From 91ba13efefa5a547711d77b78c79bb302a0a22e9 Mon Sep 17 00:00:00 2001 From: Akatsukiro Date: Wed, 17 Jan 2024 12:49:25 +0800 Subject: [PATCH] =?UTF-8?q?refactor:=20=E4=BC=98=E5=8C=96=E9=93=BE?= =?UTF-8?q?=E6=8E=A5=E5=BD=A2=E5=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/install.sh b/install.sh index b584a87..87b941f 100644 --- a/install.sh +++ b/install.sh @@ -47,10 +47,10 @@ pre_check() { fi if [[ -z "${CN}" ]]; then - LSKYPRO_RELEASE_URL="github.com/lsky-org/lsky-pro/releases/download" + LSKYPRO_RELEASE_URL="https://github.com/lsky-org/lsky-pro/releases/download" LSKY_VERSION=$(curl -s "https://api.github.com/repos/lsky-org/lsky-pro/releases/latest" | grep '"tag_name":' | sed -E 's/.*"([^"]+)".*/\1/') else - LSKYPRO_RELEASE_URL="github.com/lsky-org/lsky-pro/releases/download" + LSKYPRO_RELEASE_URL="https://github.com/lsky-org/lsky-pro/releases/download" LSKY_VERSION=$(curl -s "https://api.github.com/repos/lsky-org/lsky-pro/releases/latest" | grep '"tag_name":' | sed -E 's/.*"([^"]+)".*/\1/') fi }