diff --git a/pack b/pack index 17c22da..8121e85 100755 --- a/pack +++ b/pack @@ -44,16 +44,16 @@ for BRANCH in $BRANCHES; do fi done - if [ -f "$LCODE-$BRANCH.tar.bz2" ]; then + if [ -f "$LCODE-$BRANCH.tar.xz" ]; then echo "Removing old archive." - rm -f "$LCODE-$BRANCH.tar.bz2" + rm -f "$LCODE-$BRANCH.tar.xz" fi if [ ! $counter -eq 0 ]; then cd $LCODE-temp $TAR --remove-files -cf ../$LCODE-$BRANCH.tar wesnoth* cd .. - $BZIP2 --best $LCODE-$BRANCH.tar + $XZ -9 $LCODE-$BRANCH.tar echo "New archive created." fi rm -rf $BRANCH-temp diff --git a/variables b/variables index f7b2e50..a6c48f1 100644 --- a/variables +++ b/variables @@ -17,7 +17,7 @@ # Repositories REPO="~/repositories/wesnoth" # preferably local clone but remote should work as well -BRANCHES="master 1.10" # one or multiple branches separated by space. +BRANCHES="master" # one or multiple branches separated by space. # Options LCODE="lt" # Language code. Only 1 language is supported. @@ -32,7 +32,7 @@ MSGMERGE=`which msgmerge 2> /dev/null` MSGINIT=`which msginit 2> /dev/null` ISUTF8=`which isutf8 2> /dev/null` TAR=`which tar 2> /dev/null` -BZIP2=`which bzip2 2> /dev/null` +XZ=`which xz 2> /dev/null` DIFF=`which diff 2> /dev/null` # Colors