mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-02-01 02:15:32 +00:00
Verify certificates when downloading dependencies
This commit is contained in:
parent
1995e43b46
commit
58e0b34adc
1 changed files with 2 additions and 2 deletions
|
@ -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…
Reference in a new issue