- updated data and data diff scripts to use best 7z compression

This commit is contained in:
Mark Vejvoda 2011-04-20 07:19:29 +00:00
parent 257689ba07
commit 92039ac053
2 changed files with 2 additions and 2 deletions

View File

@ -81,7 +81,7 @@ if [ -e ../$RELEASENAME.7z ]; then
fi
#echo 7za a "../$RELEASENAME.7z" $files_list
7za a "../$RELEASENAME.7z" $files_list
7za a -mx=9 -ms=on -mhc=on "../$RELEASENAME.7z" $files_list
cd ..

View File

@ -37,5 +37,5 @@ PACKAGE="$RELEASENAME-$VERSION.7z"
echo "creating $PACKAGE"
pushd $RELEASEDIR
7za a "../$PACKAGE" *
7za a -mx=9 -ms=on -mhc=on "../$PACKAGE" *
popd