1
0
Fork 0

Fix creation of tarball.

Dieser Commit ist enthalten in:
Andrius Štikonas 2009-04-20 14:18:15 +03:00
Ursprung a2fbf04d18
Commit 4595fbc7f6
1 geänderte Dateien mit 4 neuen und 3 gelöschten Zeilen

7
pack
Datei anzeigen

@ -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