Updated source code release script to use 7z for broader compatibility

This commit is contained in:
Mark Vejvoda 2010-03-17 21:45:20 +00:00
parent abf7e57377
commit 3580e13468
1 changed files with 2 additions and 1 deletions

View File

@ -29,5 +29,6 @@ popd
pushd release
PACKAGE="$RELEASENAME-$VERSION.tar.bz2"
echo "creating $PACKAGE"
tar -c --bzip2 -f "$PACKAGE" "$RELEASENAME-$VERSION"
#tar -c --bzip2 -f "$PACKAGE" "$RELEASENAME-$VERSION"
7za a "$RELEASENAME-$VERSION.7z" "$RELEASENAME-$VERSION"
popd