Commit 43e2736d authored by Vitaly Lipatov's avatar Vitaly Lipatov

web: disable cert checking for wget

parent 77e8576f
......@@ -13,7 +13,8 @@ download_url()
{
# use wget with try=1 and timeout = 30 sec
which wget >/dev/null || fatal "Can't download, wget command is missed"
a= wget -c -t 1 -T 30 "$1"
# NOTE: disable cert checking
a= wget --no-check-certificate -c -t 1 -T 30 "$1"
}
check_url()
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment