File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ if [ -e "OpenRA.app" ]; then
14
14
exit 2
15
15
fi
16
16
17
- wget https://github.com/OpenRA/OpenRALauncherOSX/releases/download/${LAUNCHER_TAG} /launcher.zip || exit 3
17
+ curl -s -L -O https://github.com/OpenRA/OpenRALauncherOSX/releases/download/${LAUNCHER_TAG} /launcher.zip || exit 3
18
18
unzip launcher.zip
19
19
rm launcher.zip
20
20
Original file line number Diff line number Diff line change @@ -22,9 +22,9 @@ make package
22
22
find . -path " *.mdb" -delete
23
23
24
24
test -e Changelog.md && rm Changelog.md
25
- wget https://raw.githubusercontent.com/wiki/OpenRA/OpenRA/Changelog.md
25
+ curl -s -L -O https://raw.githubusercontent.com/wiki/OpenRA/OpenRA/Changelog.md
26
26
27
- wget http://daringfireball.net/projects/downloads/Markdown_1.0.1.zip
27
+ curl -s -L -O http://daringfireball.net/projects/downloads/Markdown_1.0.1.zip
28
28
unzip Markdown_1.0.1.zip
29
29
rm -rf Markdown_1.0.1.zip
30
30
./Markdown_1.0.1/Markdown.pl Changelog.md > CHANGELOG.html
Original file line number Diff line number Diff line change 75
75
76
76
if [ ! -f SDL2-CS.dll ]; then
77
77
echo " Fetching SDL2-CS from GitHub."
78
- wget https://github.com/OpenRA/SDL2-CS/releases/download/20140407/SDL2-CS.dll
78
+ curl -s -L -O https://github.com/OpenRA/SDL2-CS/releases/download/20140407/SDL2-CS.dll
79
79
fi
80
80
81
81
if [ ! -f Eluant.dll ]; then
82
82
echo " Fetching Eluant from GitHub."
83
- wget https://github.com/OpenRA/Eluant/releases/download/20140425/Eluant.dll
83
+ curl -s -L -O https://github.com/OpenRA/Eluant/releases/download/20140425/Eluant.dll
84
84
fi
You can’t perform that action at this time.
0 commit comments