From 58e0b34adce8dc4caf4e0c59deb5e56bc7ffaec5 Mon Sep 17 00:00:00 2001 From: descawed Date: Mon, 3 Aug 2020 22:59:08 +0000 Subject: [PATCH] Verify certificates when downloading dependencies --- CI/before_script.msvc.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CI/before_script.msvc.sh b/CI/before_script.msvc.sh index dc6eb7e44e..616caf3fa6 100644 --- a/CI/before_script.msvc.sh +++ b/CI/before_script.msvc.sh @@ -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