From 4c38a881b41f6a862af32c387bb9d857c99536c2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matthias=20Mail=C3=A4nder?= Date: Thu, 5 Jun 2014 10:19:16 +0200 Subject: [PATCH] don't dump into package.log --- packaging/linux/buildpackage.sh | 12 ++++++------ packaging/package-all.sh | 12 ++++++------ 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/packaging/linux/buildpackage.sh b/packaging/linux/buildpackage.sh index 111bd660ea..e399eb8cf6 100755 --- a/packaging/linux/buildpackage.sh +++ b/packaging/linux/buildpackage.sh @@ -41,27 +41,27 @@ cd packaging/linux ( echo "Building Debian package." cd deb - ./buildpackage.sh "$TAG" ../$ROOTDIR "$PACKAGEDIR" &> package.log + ./buildpackage.sh "$TAG" ../$ROOTDIR "$PACKAGEDIR" if [ $? -ne 0 ]; then - echo "Debian package build failed, refer to $PWD/package.log." + echo "Debian package build failed." fi ) & ( echo "Building Arch-Linux package." cd pkgbuild - sh buildpackage.sh "$TAG" ../$ROOTDIR "$PACKAGEDIR" &> package.log + sh buildpackage.sh "$TAG" ../$ROOTDIR "$PACKAGEDIR" if [ $? -ne 0 ]; then - echo "Arch-Linux package build failed, refer to $PWD/package.log." + echo "Arch-Linux package build failed." fi ) & ( echo "Building RPM package." cd rpm - sh buildpackage.sh "$TAG" ../$ROOTDIR ~/rpmbuild "$PACKAGEDIR" &> package.log + sh buildpackage.sh "$TAG" ../$ROOTDIR ~/rpmbuild "$PACKAGEDIR" if [ $? -ne 0 ]; then - echo "RPM package build failed, refer to $PWD/package.log." + echo "RPM package build failed." fi ) & diff --git a/packaging/package-all.sh b/packaging/package-all.sh index 9a96eaa58d..1d438c9b75 100755 --- a/packaging/package-all.sh +++ b/packaging/package-all.sh @@ -83,27 +83,27 @@ echo "Creating packages..." ( cd windows - makensis -DSRCDIR="$BUILTDIR" -DDEPSDIR="${SRCDIR}/thirdparty/windows" OpenRA.nsi &> package.log + makensis -DSRCDIR="$BUILTDIR" -DDEPSDIR="${SRCDIR}/thirdparty/windows" OpenRA.nsi if [ $? -eq 0 ]; then mv OpenRA.exe "$OUTPUTDIR"/OpenRA-$TAG.exe else - echo "Windows package build failed, refer to windows/package.log." + echo "Windows package build failed." fi ) & ( cd osx - sh buildpackage.sh "$TAG" "$BUILTDIR" "${SRCDIR}/thirdparty/osx" "$OUTPUTDIR" &> package.log + sh buildpackage.sh "$TAG" "$BUILTDIR" "${SRCDIR}/thirdparty/osx" "$OUTPUTDIR" if [ $? -ne 0 ]; then - echo "OS X package build failed, refer to osx/package.log." + echo "OS X package build failed." fi ) & ( cd linux - sh buildpackage.sh "$TAG" "$BUILTDIR" "${SRCDIR}/thirdparty/linux" "$OUTPUTDIR" &> package.log + sh buildpackage.sh "$TAG" "$BUILTDIR" "${SRCDIR}/thirdparty/linux" "$OUTPUTDIR" if [ $? -ne 0 ]; then - echo "Linux package build failed, refer to linux/package.log." + echo "Linux package build failed." fi ) &