add --no-check-certificate to wget
This commit is contained in:
parent
44cf2d1bc9
commit
cd6e50fd9b
|
@ -197,7 +197,7 @@ function download_component() {
|
||||||
curl $3 -o $1
|
curl $3 -o $1
|
||||||
else
|
else
|
||||||
show_message "using wget to download $4"
|
show_message "using wget to download $4"
|
||||||
wget "$3" -P "$CACHE_PATH"
|
wget --no-check-certificate "$3" -P "$CACHE_PATH"
|
||||||
|
|
||||||
if [ $? -eq 0 ];then
|
if [ $? -eq 0 ];then
|
||||||
notify-send "Photoshop CC" "$4 download completed" -i "download"
|
notify-send "Photoshop CC" "$4 download completed" -i "download"
|
||||||
|
|
Loading…
Reference in New Issue