Changed script to produce a 7z archive for smaller size and better OS compatibility

This commit is contained in:
Mark Vejvoda 2010-03-15 22:19:10 +00:00
parent 075433c365
commit b2128e69a7
1 changed files with 2 additions and 2 deletions

View File

@ -27,9 +27,9 @@ find -name "\.svn" -exec rm -rf {} \;
popd
pushd release
PACKAGE="$RELEASENAME-$VERSION.tar.bz2"
PACKAGE="$RELEASENAME-$VERSION.7z"
echo "creating $PACKAGE"
pushd $RELEASEDIR
tar -c --bzip2 -f "../$PACKAGE" *
7za a "../$PACKAGE" *
popd