1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-02-01 11:15:13 +01:00

Make curl follow redirects

This commit is contained in:
xperia64
2015-10-07 17:48:46 -04:00
parent 6403b0a47f
commit 24e13f73a9

View File

@@ -17,7 +17,7 @@ libVFile="./libversion"
function download {
if command -v curl > /dev/null 2>&1; then
curl -o $2 $1
curl -L -o $2 $1
elif command -v wget > /dev/null 2>&1; then
wget -O $2 $1
else