1
0
Fork 0

Fix creation of tarball.

Esse commit está contido em:
Andrius Štikonas 2009-04-20 14:18:15 +03:00
commit 4595fbc7f6
1 arquivos alterados com 4 adições e 3 exclusões

7
pack
Ver arquivo

@ -66,12 +66,13 @@ for BRANCH in $TRUNK $BRANCHES; do
fi
if [ ! $counter -eq 0 ]; then
$TAR --remove-files -cf $LCODE-$BRANCH.tar --transform s/$LCODE-temp// $LCODE-temp
cd $LCODE-temp
$TAR --remove-files -cf ../$LCODE-$BRANCH.tar wesnoth*
cd ..
$BZIP2 --best $LCODE-$BRANCH.tar
echo "New archive created."
else
rmdir $LCODE-temp
fi
rmdir $LCODE-temp
done
echo -e $GREEN"Finished."$ENDCOLOR