From 1f4feabb757bca6f5e01b3794e8e5317661ba8d9 Mon Sep 17 00:00:00 2001 From: NewName Date: Mon, 19 Aug 2024 04:31:06 +0800 Subject: [PATCH] Update vmess-sk5.sh --- vmess-sk5.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/vmess-sk5.sh b/vmess-sk5.sh index 334f794..f387854 100644 --- a/vmess-sk5.sh +++ b/vmess-sk5.sh @@ -65,7 +65,7 @@ default_config=' check_and_install_curl() { if ! type curl &>/dev/null; then echo -e "${yellow}正在安装curl...${none}" - apt-get update && apt-get install -y curl + apt-get update && apt-get install -yq curl fi } @@ -73,7 +73,7 @@ check_and_install_curl() { check_and_install_jq() { if ! type jq &>/dev/null; then echo -e "${yellow}正在安装jq...${none}" - apt-get update && apt-get install -y jq + apt-get update && apt-get install -yq jq fi } @@ -81,7 +81,7 @@ check_and_install_jq() { check_and_install_uuid_runtime() { if ! type uuidgen &>/dev/null; then echo -e "${yellow}正在安装 uuid-runtime...${none}" - apt-get update && apt-get install -y uuid-runtime + apt-get update && apt-get install -yq uuid-runtime fi }