From e1dbc653e5650a8a354576e82d1aac9557d7b57d Mon Sep 17 00:00:00 2001 From: Ben Chatelain Date: Thu, 6 May 2021 22:19:11 -0600 Subject: [PATCH] =?UTF-8?q?=F0=9F=8F=9D=20Build=20args=20for=20brew=20sand?= =?UTF-8?q?box?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixes #363 --- script/build | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/script/build b/script/build index 702c77d..d5cb5c8 100755 --- a/script/build +++ b/script/build @@ -6,8 +6,10 @@ # Builds the Swift Package. # -script/clean -script/lint - echo "==> 🏗️ Building mas ($(script/version))" -swift build --configuration release --arch arm64 --arch x86_64 +swift build \ + --configuration release \ + --arch arm64 \ + --arch x86_64 \ + --disable-sandbox \ + --manifest-cache none