there's currently no reason to distribute debug symbols; let's distribute just the Release builds

This commit is contained in:
Alex Birch 2019-06-23 23:27:12 +01:00
parent b0f10b7940
commit 88b0f746c6
No known key found for this signature in database
GPG Key ID: 305EB1F98D44ACBA

View File

@ -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"