Use curl instead of wget in fetch-thirdparty-deps.

This commit is contained in:
Paul Chote
2017-08-24 21:27:35 +01:00
committed by reaperrr
parent 739d0c0bb2
commit 49d5283ce1

View File

@@ -19,7 +19,7 @@ function get()
if [ ! -f SDL2.dll ]; then if [ ! -f SDL2.dll ]; then
echo "Fetching SDL2 from libsdl.org" echo "Fetching SDL2 from libsdl.org"
wget https://www.libsdl.org/release/SDL2-2.0.5-win32-x86.zip curl -LOs https://www.libsdl.org/release/SDL2-2.0.5-win32-x86.zip
unzip SDL2-2.0.5-win32-x86.zip SDL2.dll unzip SDL2-2.0.5-win32-x86.zip SDL2.dll
rm SDL2-2.0.5-win32-x86.zip rm SDL2-2.0.5-win32-x86.zip
fi fi