mirror of
https://github.com/TES3MP/TES3MP.git
synced 2025-09-23 20:48:16 -04:00
Merge branch 'secure-deps' into 'master'
Verify certificates when downloading dependencies See merge request OpenMW/openmw!278
This commit is contained in:
commit
c72fda7ecc
@ -258,10 +258,10 @@ download() {
|
||||
|
||||
if [ -z $VERBOSE ]; then
|
||||
RET=0
|
||||
curl --silent --retry 10 -kLy 5 -o $FILE $URL || RET=$?
|
||||
curl --silent --retry 10 -Ly 5 -o $FILE $URL || RET=$?
|
||||
else
|
||||
RET=0
|
||||
curl --retry 10 -kLy 5 -o $FILE $URL || RET=$?
|
||||
curl --retry 10 -Ly 5 -o $FILE $URL || RET=$?
|
||||
fi
|
||||
|
||||
if [ $RET -ne 0 ]; then
|
||||
|
Loading…
x
Reference in New Issue
Block a user