1
0
forked from 0ad/0ad

Fixes silent download errors in build-osx-libs.sh. Fixes #5490.

This was SVN commit r22493.
This commit is contained in:
historic_bruno 2019-07-17 14:32:26 +00:00
parent 01fd8a3654
commit 7f453a2bd0

View File

@ -119,7 +119,7 @@ download_lib()
if [ ! -e $filename ]; then if [ ! -e $filename ]; then
echo "Downloading $filename" echo "Downloading $filename"
curl -L -o ${filename} ${url}${filename} || die "Download of $url$filename failed" curl -fLo ${filename} ${url}${filename} || die "Download of $url$filename failed"
fi fi
} }