Revert xz: try 2.

This commit is contained in:
Andrius Štikonas 2018-12-28 23:56:21 +00:00
부모 ae27570b60
커밋 de5181ca3d
2개의 변경된 파일10개의 추가작업 그리고 10개의 파일을 삭제

4
pack
파일 보기

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

파일 보기

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