From 3188d1b0713f8cae68b5be7676b0191efe3d5457 Mon Sep 17 00:00:00 2001 From: Mario Fetka Date: Mon, 24 Jun 2013 19:47:07 +0200 Subject: [PATCH] ignore expired https certs --- lib/builder-utils.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/builder-utils.sh b/lib/builder-utils.sh index 4db4adc..95f21cf 100644 --- a/lib/builder-utils.sh +++ b/lib/builder-utils.sh @@ -23,7 +23,7 @@ function retrieve_file() { else rm -f $dst if [ "$downloader" = "wget" ]; then - wget --tries=1 -O $dst --timeout=5 -q --no-verbose "$src" + wget --no-check-certificate --tries=1 -O $dst --timeout=5 -q --no-verbose "$src" if [ "$?" == "1" ] ; then rm $dst fi