Merge 86d223883f
into ad157c73aa
This commit is contained in:
commit
17f014412e
|
@ -1,4 +1,4 @@
|
||||||
|
<h1>ssl cerificate issue fixed</h1>
|
||||||
<div align="center" class="tip" markdown="1" style>
|
<div align="center" class="tip" markdown="1" style>
|
||||||
|
|
||||||

|

|
||||||
|
@ -96,4 +96,4 @@ chmod +x uninstaller.sh
|
||||||
|
|
||||||
<a href="https://github.com/Gictorbit/photoshopCClinux">
|
<a href="https://github.com/Gictorbit/photoshopCClinux">
|
||||||
<img src="https://github.com/Gictorbit/photoshopCClinux/raw/master/images/AdobePhotoshop-icon.png" width="9%">
|
<img src="https://github.com/Gictorbit/photoshopCClinux/raw/master/images/AdobePhotoshop-icon.png" width="9%">
|
||||||
</a>
|
</a>
|
||||||
|
|
|
@ -203,11 +203,11 @@ function download_component() {
|
||||||
|
|
||||||
elif [ "$curlpkg" == "true" ];then
|
elif [ "$curlpkg" == "true" ];then
|
||||||
show_message "using curl to download $4"
|
show_message "using curl to download $4"
|
||||||
curl $3 -o $1
|
curl -k $3 -o $1
|
||||||
downrez=$?
|
downrez=$?
|
||||||
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"
|
||||||
downrez=$?
|
downrez=$?
|
||||||
fi
|
fi
|
||||||
if [ "$downrez" -eq 0 ];then
|
if [ "$downrez" -eq 0 ];then
|
||||||
|
|
Loading…
Reference in New Issue