From 65b5425a93a1baafd1083d76bf05ce7a90eb0ccd Mon Sep 17 00:00:00 2001 From: ClayM0re Date: Fri, 24 Jan 2020 21:03:02 +0800 Subject: [PATCH] Update index.html --- index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.html b/index.html index e014fd5..7815b4a 100644 --- a/index.html +++ b/index.html @@ -21,9 +21,9 @@ BRANCH="master" fi if _exists curl && [ "${ACME_USE_WGET:-0}" = "0" ]; then - curl https://raw.githubusercontent.com/Neilpang/acme.sh/$BRANCH/acme.sh | INSTALLONLINE=1 sh + curl https://cdn.jsdelivr.net/gh/Neilpang/acme.sh/$BRANCH/acme.sh | INSTALLONLINE=1 sh elif _exists wget ; then - wget -O - https://raw.githubusercontent.com/Neilpang/acme.sh/$BRANCH/acme.sh | INSTALLONLINE=1 sh + wget -O - https://cdn.jsdelivr.net/gh/Neilpang/acme.sh/$BRANCH/acme.sh | INSTALLONLINE=1 sh else echo "Sorry, you must have curl or wget installed first." echo "Please install either of them and try again."