From b0ad4cb3cc627eea5613f68f2d95ac9d313b467a Mon Sep 17 00:00:00 2001 From: Patrick Jakobsen Date: Fri, 17 Aug 2018 12:14:05 +0200 Subject: [PATCH] Fixed acs folder retainer ending up in build The file is now properly excluded from building in both the standard and the thin build process --- build.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build.sh b/build.sh index 4764bec..411002f 100644 --- a/build.sh +++ b/build.sh @@ -10,10 +10,10 @@ cd .. # Bundle everything that isn't: # .sh : a shell script. thin_arg=$1 -if [[ $thin_arg == "source" ]]; then - 7za a -tzip ../ZMemory.pk3 -r -x\!*.sh -xr\!acs_source +if [[ $thin_arg == "thin" ]]; then + 7za a -tzip ../ZMemory.pk3 -r -x\!*.sh -x\!acs/.gitignore -xr\!acs_source else - 7za a -tzip ../ZMemory.pk3 -r -x\!*.sh + 7za a -tzip ../ZMemory.pk3 -r -x\!*.sh -x\!acs/.gitignore fi