Fix creation of tarball.

This commit is contained in:
Andrius Štikonas 2009-04-20 14:18:15 +03:00
부모 a2fbf04d18
커밋 4595fbc7f6
1개의 변경된 파일4개의 추가작업 그리고 3개의 파일을 삭제

7
pack
파일 보기

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