diff options
Diffstat (limited to 'tools/make_windows_package.sh')
-rwxr-xr-x | tools/make_windows_package.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/make_windows_package.sh b/tools/make_windows_package.sh index 1a339a2b..72de6f33 100755 --- a/tools/make_windows_package.sh +++ b/tools/make_windows_package.sh @@ -7,7 +7,7 @@ set -e set -x -VERSION=`git describe --always` +VERSION=`git describe --always`-windows-x86 DEST=dist/$VERSION rm -rf $DEST @@ -52,4 +52,4 @@ find $DEST -name '*.c' -o -name '*.h' -o -name '*.txt' \ -exec unix2dos '{}' \; # Zip it all up -( cd dist; zip -r $VERSION-windows.zip $VERSION ) +( cd dist; zip -r $VERSION.zip $VERSION ) |