Browse Source

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
master
Patrick Jakobsen 7 years ago
parent
commit
b0ad4cb3cc
  1. 6
      build.sh

6
build.sh

@ -10,10 +10,10 @@ cd ..
# Bundle everything that isn't: # Bundle everything that isn't:
# .sh : a shell script. # .sh : a shell script.
thin_arg=$1 thin_arg=$1
if [[ $thin_arg == "source" ]]; then if [[ $thin_arg == "thin" ]]; then
7za a -tzip ../ZMemory.pk3 -r -x\!*.sh -xr\!acs_source 7za a -tzip ../ZMemory.pk3 -r -x\!*.sh -x\!acs/.gitignore -xr\!acs_source
else else
7za a -tzip ../ZMemory.pk3 -r -x\!*.sh 7za a -tzip ../ZMemory.pk3 -r -x\!*.sh -x\!acs/.gitignore
fi fi

Loading…
Cancel
Save