From 88b0f746c64d1a96d9eec036e250b886f9fd1d37 Mon Sep 17 00:00:00 2001 From: Alex Birch Date: Sun, 23 Jun 2019 23:27:12 +0100 Subject: [PATCH] there's currently no reason to distribute debug symbols; let's distribute just the Release builds --- Builds/MacOSX/archive-for-distribution.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Builds/MacOSX/archive-for-distribution.sh b/Builds/MacOSX/archive-for-distribution.sh index 1863083..98f2fd4 100755 --- a/Builds/MacOSX/archive-for-distribution.sh +++ b/Builds/MacOSX/archive-for-distribution.sh @@ -30,7 +30,8 @@ trap 'error ${LINENO}' ERR #### -declare -a BUILDS=("Debug" "Release") +# declare -a BUILDS=("Debug" "Release") +declare -a BUILDS=("Release") for BUILD in "${BUILDS[@]}" do BUILDROOT="$MYDIR/build"