diff --git a/index.html b/index.html
index e014fd5..8c91eb1 100644
--- a/index.html
+++ b/index.html
@@ -1,6 +1,6 @@
#!/usr/bin/env sh
-#https://github.com/Neilpang/get.acme.sh
+#https://github.com/acmesh-official/get.acme.sh
_exists() {
cmd="$1"
@@ -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://raw.githubusercontent.com/acmesh-official/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://raw.githubusercontent.com/acmesh-official/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."