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 lines
404 B
20 lines
404 B
#!/bin/bash
|
|
rm ZMemory.pk3
|
|
cd src
|
|
|
|
# compile the ACS source
|
|
cd acs_source
|
|
bash compile.sh
|
|
cd ..
|
|
|
|
# Bundle everything that isn't:
|
|
# .sh : a shell script.
|
|
thin_arg=$1
|
|
version=$(cat ../version.txt)
|
|
if [[ $thin_arg == "thin" ]]; then
|
|
7za a -tzip ../ZMemory_v$version\_thin.pk3 -r -x\!*.sh -x\!acs/.gitignore -xr\!acs_source
|
|
else
|
|
7za a -tzip ../ZMemory_v$version.pk3 -r -x\!*.sh -x\!acs/.gitignore
|
|
fi
|
|
|
|
|
|
|