Merge pull request #5560 from Mailaender/travis-silence

Reduced the verbosity of the packaging build
This commit is contained in:
Paul Chote
2014-06-06 00:19:38 +12:00
2 changed files with 2 additions and 2 deletions

View File

@@ -23,6 +23,6 @@ rm OpenRA.app/Contents/Resources/OpenRA.Editor.exe
rm OpenRA.app/Contents/Resources/OpenRA.CrashDialog.exe
# Package app bundle into a zip and clean up
zip OpenRA-$1 -r -9 OpenRA.app
zip OpenRA-$1 -r -9 OpenRA.app --quiet
mv OpenRA-$1.zip $4
rm -rf OpenRA.app

View File

@@ -79,7 +79,7 @@ echo "Creating packages..."
pushd windows
echo "Building Windows setup.exe"
makensis -DSRCDIR="$BUILTDIR" -DDEPSDIR="${SRCDIR}/thirdparty/windows" OpenRA.nsi
makensis -V2 -DSRCDIR="$BUILTDIR" -DDEPSDIR="${SRCDIR}/thirdparty/windows" OpenRA.nsi
if [ $? -eq 0 ]; then
mv OpenRA.exe "$OUTPUTDIR"/OpenRA-$TAG.exe
else