add --no-check-certificate to wget

This commit is contained in:
graceyudhaaa 2021-08-13 12:26:36 +07:00
parent ad157c73aa
commit 887ff2a7bf
1 changed files with 1 additions and 1 deletions

View File

@ -207,7 +207,7 @@ function download_component() {
downrez=$?
else
show_message "using wget to download $4"
wget "$3" -P "$CACHE_PATH"
wget --no-check-certificate "$3" -P "$CACHE_PATH"
downrez=$?
fi
if [ "$downrez" -eq 0 ];then