Merge branch 'secure-deps' into 'master'

Verify certificates when downloading dependencies

See merge request OpenMW/openmw!278
pull/581/head
AnyOldName3 4 years ago
commit c72fda7ecc

@ -258,10 +258,10 @@ download() {
if [ -z $VERBOSE ]; then if [ -z $VERBOSE ]; then
RET=0 RET=0
curl --silent --retry 10 -kLy 5 -o $FILE $URL || RET=$? curl --silent --retry 10 -Ly 5 -o $FILE $URL || RET=$?
else else
RET=0 RET=0
curl --retry 10 -kLy 5 -o $FILE $URL || RET=$? curl --retry 10 -Ly 5 -o $FILE $URL || RET=$?
fi fi
if [ $RET -ne 0 ]; then if [ $RET -ne 0 ]; then

Loading…
Cancel
Save