lawless-legends/Platform/Apple/virtual/bundlePacker.sh

26 lines
593 B
Bash
Executable File

#!/bin/bash
set -euxo pipefail
if [ "$#" -ne 1 ]; then
echo "Usage: bundlePacker.sh <versionNum>"
exit 1
fi
./b
rm -f PackPartitions.exe
java -Djava.awt.headless=true -jar /Users/mhaye/plat/virtual/launch4j/launch4j.jar launch4j.cfg.xml
rm -rf bundle-tmp
mkdir bundle-tmp
cd bundle-tmp
unzip ../packer-bundle.zip
mv packer-bundle-* packer-bundle-$1
rm packer-bundle-$1/PackPartitions.exe
rm -f packer-bundle-$1/world.xml
mv ../PackPartitions.exe packer-bundle-$1/PackPartitions.exe
zip -r packer-bundle-$1.zip *
cp packer-bundle-$1.zip ../packer-bundle.zip
cd ..
rm -r bundle-tmp