cleaned packaging comments

This commit is contained in:
Matthias Mailänder
2013-10-19 13:16:44 +02:00
parent 807dc8b392
commit 20837c3776

View File

@@ -75,7 +75,7 @@ echo "Creating packages..."
if [ $? -eq 0 ]; then if [ $? -eq 0 ]; then
mv OpenRA.exe "$OUTPUTDIR"/OpenRA-$TAG.exe mv OpenRA.exe "$OUTPUTDIR"/OpenRA-$TAG.exe
else else
echo "Windows package build failed, refer to windows/package.log." echo "Windows package build failed, refer to windows/package.log."
fi fi
) & ) &
@@ -83,7 +83,7 @@ echo "Creating packages..."
cd osx cd osx
sh buildpackage.sh "$TAG" "$BUILTDIR" "$OUTPUTDIR" &> package.log sh buildpackage.sh "$TAG" "$BUILTDIR" "$OUTPUTDIR" &> package.log
if [ $? -ne 0 ]; then if [ $? -ne 0 ]; then
echo "OSX package build failed, refer to osx/package.log." echo "OS X package build failed, refer to osx/package.log."
fi fi
) & ) &
@@ -91,14 +91,15 @@ echo "Creating packages..."
cd linux cd linux
sh buildpackage.sh "$TAG" "$BUILTDIR" "$OUTPUTDIR" &> package.log sh buildpackage.sh "$TAG" "$BUILTDIR" "$OUTPUTDIR" &> package.log
if [ $? -ne 0 ]; then if [ $? -ne 0 ]; then
echo "linux package build failed, refer to linux/package.log." echo "Linux package build failed, refer to linux/package.log."
fi fi
) & ) &
( (
echo "Downloading source code packages from GitHub."
curl -s -L -o "$OUTPUTDIR/$TAG.tar.gz" "https://github.com/OpenRA/OpenRA/archive/$TAG.tar.gz" curl -s -L -o "$OUTPUTDIR/$TAG.tar.gz" "https://github.com/OpenRA/OpenRA/archive/$TAG.tar.gz"
if [ $? -ne 0 ]; then if [ $? -ne 0 ]; then
echo "source code package download failed." echo "Source code package download failed."
fi fi
) & ) &
wait wait