From 065ff2732d3b6e5ab07b2f8b91a925391fbee6c9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=AE=A1=E5=AD=90=E5=B7=A5=E5=85=B7=E7=AE=B1?= <50480726+A7T@users.noreply.github.com> Date: Wed, 6 Apr 2022 11:54:45 +0800 Subject: [PATCH] 'GitHub' is not 'GitHub-CDN'. --- README_CN.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README_CN.md b/README_CN.md index e056fc7..d00ae61 100644 --- a/README_CN.md +++ b/README_CN.md @@ -47,7 +47,7 @@ opkg update && opkg install curl #如已安装请忽略 ~**使用curl安装**:
```Shell -#GitHub-CDN源 +#GitHub源 export url='https://raw.githubusercontent.com/juewuy/ShellClash/master' && sh -c "$(curl -kfsSl $url/install.sh)" && source /etc/profile &> /dev/null #jsDelivrCDN源 export url='https://cdn.jsdelivr.net/gh/juewuy/ShellClash@master' && sh -c "$(curl -kfsSl $url/install.sh)" && source /etc/profile &> /dev/null @@ -56,7 +56,7 @@ export url='https://cdn.jsdelivr.net/gh/juewuy/ShellClash@master' && sh -c "$(cu ~**使用wget安装**:
```Shell -#GitHub-CDN源 +#GitHub源 export url='https://raw.githubusercontent.com/juewuy/ShellClash/master' && wget -q --no-check-certificate -O /tmp/install.sh $url/install.sh && sh /tmp/install.sh && source /etc/profile &> /dev/null #jsDelivrCDN源 export url='https://cdn.jsdelivr.net/gh/juewuy/ShellClash@master' && wget -q --no-check-certificate -O /tmp/install.sh $url/install.sh && sh /tmp/install.sh && source /etc/profile &> /dev/null