From 97e979b3cc8c75c3c3c07ac7f3e4f9b3b7eafd1f Mon Sep 17 00:00:00 2001 From: NewName Date: Mon, 12 Aug 2024 03:44:42 +0800 Subject: [PATCH] Update vmess-sk5.sh --- vmess-sk5.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vmess-sk5.sh b/vmess-sk5.sh index 4d94f79..f603c45 100644 --- a/vmess-sk5.sh +++ b/vmess-sk5.sh @@ -64,7 +64,7 @@ default_config=' # 检查并安装curl check_and_install_curl() { if ! type curl &>/dev/null; then - echo -e "${yellow}正在安装需要的环境...${none}" + echo -e "${yellow}正在安装curl...${none}" apt-get update && apt-get install -y curl fi } @@ -72,7 +72,7 @@ check_and_install_curl() { # 检查并安装jq check_and_install_jq() { if ! type jq &>/dev/null; then - echo -e "${yellow}正在安装需要的环境...${none}" + echo -e "${yellow}正在安装jq...${none}" apt-get update && apt-get install -y jq fi }