use curl instead of wget for the libs download, since travis installed wget can't handle sni tlsv1_2 certs :(

This commit is contained in:
Miso Zmiric (Mike Squinter) 2015-07-03 09:03:13 +01:00
parent 2dda7e9f94
commit 76fd00c18f
1 changed files with 1 additions and 1 deletions

View File

@ -85,7 +85,7 @@ if [[ ! -d $cachedir/SDL2-${SDL2_PV} ]]; then
popd
fi
if [[ ! -f $cachedir/orctlibs.zip ]]; then
wget https://download.openrct2.website/dev/lib/mingw --secure-protocol=TLSv1 --output-document $cachedir/orctlibs.zip;
curl https://download.openrct2.website/dev/lib/mingw -o $cachedir/orctlibs.zip;
fi
if [[ ! -d $cachedir/orctlibs ]]; then
mkdir -p $cachedir/orctlibs