You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 rivejä
404 B

  1. #!/bin/bash
  2. rm ZMemory.pk3
  3. cd src
  4. # compile the ACS source
  5. cd acs_source
  6. bash compile.sh
  7. cd ..
  8. # Bundle everything that isn't:
  9. # .sh : a shell script.
  10. thin_arg=$1
  11. version=$(cat ../version.txt)
  12. if [[ $thin_arg == "thin" ]]; then
  13. 7za a -tzip ../ZMemory_v$version\_thin.pk3 -r -x\!*.sh -x\!acs/.gitignore -xr\!acs_source
  14. else
  15. 7za a -tzip ../ZMemory_v$version.pk3 -r -x\!*.sh -x\!acs/.gitignore
  16. fi