diff --git a/build-windows-release.sh b/build-windows-release.sh index 2fb6181..405e8c6 100755 --- a/build-windows-release.sh +++ b/build-windows-release.sh @@ -1,7 +1,7 @@ #!/bin/sh DIR=$(readlink -f $(dirname "$0")) -VERSION=1.0.0 +VERSION=1.0.1 BASENAME=pushfight DIRNAME=$BASENAME-$VERSION ZIPNAME=$BASENAME-$VERSION-windows.zip @@ -11,7 +11,7 @@ set -e -E -o pipefail # Build windows binaries echo 'Building executables...' make clean -make -f Makefile.mingw -j lookup-min pushfight-standalone-server +make -f Makefile.mingw -j lookup-min print-perm pushfight-standalone-server # Build statically served files (HTML, JS, etc.) echo 'Building static files...' @@ -21,7 +21,7 @@ echo 'Populating temporary directory...' TEMPDIR=$(mktemp -d) trap "rm -R '$TEMPDIR'" EXIT mkdir "$TEMPDIR/$DIRNAME" -cp lookup-min.exe pushfight-standalone-server.exe "$TEMPDIR/$DIRNAME/" +cp lookup-min.exe print-perm.exe pushfight-standalone-server.exe "$TEMPDIR/$DIRNAME/" cp -R html/dist "$TEMPDIR/$DIRNAME/static" cat >"$TEMPDIR/$DIRNAME/README.txt" <