diff options
author | Mario Fetka <[email protected]> | 2013-06-24 17:47:07 (GMT) |
---|---|---|
committer | Mario Fetka <[email protected]> | 2013-06-24 17:47:07 (GMT) |
commit | 3188d1b0713f8cae68b5be7676b0191efe3d5457 (patch) | |
tree | 4091041435170f5585d00c383a53be0a2a29adf1 /lib/builder-utils.sh | |
parent | 446225ae59cb2c846e4d5598a8b433ed006040ea (diff) |
ignore expired https certs
Diffstat (limited to 'lib/builder-utils.sh')
-rw-r--r-- | lib/builder-utils.sh | 2 |
1 files changed, 1 insertions, 1 deletions
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 |