ignore expired https certs

This commit is contained in:
Mario Fetka 2013-06-24 19:47:07 +02:00
parent 446225ae59
commit 3188d1b071
1 changed files with 1 additions and 1 deletions

View File

@ -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