From 0e239f892d0b3aa364f8d38ca20c134dfa5b198e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matthias=20Mail=C3=A4nder?= Date: Sat, 2 Nov 2013 14:00:43 +0100 Subject: [PATCH] fixed undefined $OUTPUTDIR updated build.open-ra.org --- packaging/checkout-and-build.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/packaging/checkout-and-build.sh b/packaging/checkout-and-build.sh index 30fa0c5334..4344f86330 100755 --- a/packaging/checkout-and-build.sh +++ b/packaging/checkout-and-build.sh @@ -14,7 +14,6 @@ msg () { } TAG=$1 - VERSION=`echo $TAG | grep -o "[0-9]\\+-\\?[0-9]\\?"` _gitroot="git://github.com/OpenRA/OpenRA.git" @@ -62,7 +61,7 @@ fi ./package-all.sh $TAG ~/openra-package/packages/ 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 "$HOME/openra-package/packages/$TAG.tar.gz" "https://github.com/OpenRA/OpenRA/archive/$TAG.tar.gz" if [ $? -ne 0 ]; then echo "Source code package download failed." fi