From d6449c2902114524c9dbf30c7e01a2d7da5d70d2 Mon Sep 17 00:00:00 2001 From: Matthew Date: Sun, 5 Sep 2010 00:27:28 +1200 Subject: [PATCH] Stupid arguments ordering. --- packaging/osx/OpenRA.app/Contents/MacOS/download_package | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packaging/osx/OpenRA.app/Contents/MacOS/download_package b/packaging/osx/OpenRA.app/Contents/MacOS/download_package index ec4713bcbc..5a2acab0ea 100755 --- a/packaging/osx/OpenRA.app/Contents/MacOS/download_package +++ b/packaging/osx/OpenRA.app/Contents/MacOS/download_package @@ -66,7 +66,7 @@ EOT` /usr/bin/osascript << EOT tell application "Terminal" activate - do script "cd \"${SUPPORT_PATH}\"; curl -L --create-dirs -o \"./Downloads/${1}\" \"${5}\"; unzip -o \"Downloads/${1}\" -d \"${2}\"; touch done; exit;" + do script "cd \"${SUPPORT_PATH}\"; curl --create-dirs -L -o \"./Downloads/${1}\" \"${5}\"; unzip -o \"Downloads/${1}\" -d \"${2}\"; touch done; exit;" end tell EOT # Hack around osascript returning before the download finishes @@ -74,4 +74,4 @@ EOT sleep 1 done rm "done" -fi \ No newline at end of file +fi