Revert xz: try 2.

This commit is contained in:
Andrius Štikonas 2018-12-28 23:56:21 +00:00
parent ae27570b60
commit de5181ca3d
2 changed files with 10 additions and 10 deletions

4
pack
View File

@ -44,9 +44,9 @@ for BRANCH in $BRANCHES; do
fi fi
done done
if [ -f "$LCODE-$BRANCH.tar.xz" ]; then if [ -f "$LCODE-$BRANCH.tar.bz2" ]; then
echo "Removing old archive." echo "Removing old archive."
rm -f "$LCODE-$BRANCH.tar.xz" rm -f "$LCODE-$BRANCH.tar.bz2"
fi fi
if [ ! $counter -eq 0 ]; then if [ ! $counter -eq 0 ]; then

View File

@ -26,14 +26,14 @@ LCODE="lt" # Language code. Only 1 language is supported.
MDIR="mo" MDIR="mo"
# Binaries. Don't forget to install them before usign these scripts. # Binaries. Don't forget to install them before usign these scripts.
GIT=`which git 2> /dev/null` GIT=$(which git 2> /dev/null)
MSGFMT=`which msgfmt 2> /dev/null` MSGFMT=$(which msgfmt 2> /dev/null)
MSGMERGE=`which msgmerge 2> /dev/null` MSGMERGE=$(which msgmerge 2> /dev/null)
MSGINIT=`which msginit 2> /dev/null` MSGINIT=$(which msginit 2> /dev/null)
ISUTF8=`which isutf8 2> /dev/null` ISUTF8=$(which isutf8 2> /dev/null)
TAR=`which tar 2> /dev/null` TAR=$(which tar 2> /dev/null)
BZIP=`which bzip2 2> /dev/null` BZIP=$(which bzip2 2> /dev/null)
DIFF=`which diff 2> /dev/null` DIFF=$(which diff 2> /dev/null)
# Colors # Colors
RED="\033[1;31m" RED="\033[1;31m"