Update start.sh

wget下载clash配置文件时,跳过SSL证书检测。
This commit is contained in:
wanhebin 2023-03-27 15:09:14 +08:00 committed by GitHub
parent 8043c3b992
commit 2e6f477b41
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -78,7 +78,7 @@ Text4="配置文件config.yaml下载失败退出启动"
for i in {1..10}
do
#curl -s -o $Temp_Dir/clash.yaml $URL
wget -q -O $Temp_Dir/clash.yaml $URL
wget -q --no-check-certificate -O $Temp_Dir/clash.yaml $URL
ReturnStatus=$?
if [ $ReturnStatus -eq 0 ]; then
break