A tabbed viewer for Chris Edwards' ASL Vehicle/Gun data cards.
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.
 
asl-cards/freeze.sh

24 lines
451 B

#!/bin/bash
# initialize
BASE_DIR=$(readlink -f "`dirname "$0"`")
RELEASE_FILENAME="/tmp/asl_cards.tar.gz"
# freeze the application
cd "$BASE_DIR"
rm -rf build
python _freeze.py build
if [ $? -ne 0 ] ; then
echo "ERROR: Freeze failed."
exit $?
fi
# create the release
cd build/exe.linux-x86_64-3.6
tar cfz "$RELEASE_FILENAME" .
echo
echo "Created release:"
ls -lh "$RELEASE_FILENAME" | sed -e "s/^/ /"
# clean up
rm -rf "$BASE_DIR/build"