From ac56271d030310e2c5f907e1d3329b6ef09b45f0 Mon Sep 17 00:00:00 2001 From: Haruue Icymoon Date: Wed, 6 Sep 2023 23:29:46 +0800 Subject: [PATCH] fix(script): url in rerun_with_sudo --- install_server.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/install_server.sh b/install_server.sh index 88c2ae5..ea67117 100755 --- a/install_server.sh +++ b/install_server.sh @@ -299,9 +299,9 @@ rerun_with_sudo() { chmod +x "$_tmp_script" if has_command curl; then - curl -o "$_tmp_script" 'https://get.hy2.sh/' + curl -o "$_tmp_script" 'https://raw.githubusercontent.com/apernet/hysteria/hy1/install_server.sh' elif has_command wget; then - wget -O "$_tmp_script" 'https://get.hy2.sh' + wget -O "$_tmp_script" 'https://raw.githubusercontent.com/apernet/hysteria/hy1/install_server.sh' else return 127 fi