use curl everywhere to run out of the box on Mac

This commit is contained in:
Matthias Mailänder
2015-05-01 09:59:24 +02:00
parent 8a514ee143
commit a43d303eb7
3 changed files with 5 additions and 5 deletions

View File

@@ -14,7 +14,7 @@ if [ -e "OpenRA.app" ]; then
exit 2
fi
wget https://github.com/OpenRA/OpenRALauncherOSX/releases/download/${LAUNCHER_TAG}/launcher.zip || exit 3
curl -s -L -O https://github.com/OpenRA/OpenRALauncherOSX/releases/download/${LAUNCHER_TAG}/launcher.zip || exit 3
unzip launcher.zip
rm launcher.zip

View File

@@ -22,9 +22,9 @@ make package
find . -path "*.mdb" -delete
test -e Changelog.md && rm Changelog.md
wget https://raw.githubusercontent.com/wiki/OpenRA/OpenRA/Changelog.md
curl -s -L -O https://raw.githubusercontent.com/wiki/OpenRA/OpenRA/Changelog.md
wget http://daringfireball.net/projects/downloads/Markdown_1.0.1.zip
curl -s -L -O http://daringfireball.net/projects/downloads/Markdown_1.0.1.zip
unzip Markdown_1.0.1.zip
rm -rf Markdown_1.0.1.zip
./Markdown_1.0.1/Markdown.pl Changelog.md > CHANGELOG.html