From 2343ea8ece175fbdced9b07580669f11d88f41df Mon Sep 17 00:00:00 2001 From: Patrick Jakobsen Date: Fri, 17 Aug 2018 12:16:08 +0200 Subject: [PATCH] Different names for default and thin builds Thin builds are now named with _thin in the name of the file for differentiation. --- build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sh b/build.sh index 411002f..4c07862 100644 --- a/build.sh +++ b/build.sh @@ -11,7 +11,7 @@ cd .. # .sh : a shell script. thin_arg=$1 if [[ $thin_arg == "thin" ]]; then - 7za a -tzip ../ZMemory.pk3 -r -x\!*.sh -x\!acs/.gitignore -xr\!acs_source + 7za a -tzip ../ZMemory_thin.pk3 -r -x\!*.sh -x\!acs/.gitignore -xr\!acs_source else 7za a -tzip ../ZMemory.pk3 -r -x\!*.sh -x\!acs/.gitignore fi