From 0188dfb1f279e27fedbf28d09e9063141247f7c5 Mon Sep 17 00:00:00 2001 From: NewName Date: Mon, 19 Aug 2024 04:33:09 +0800 Subject: [PATCH] Update vmess.sh --- tmp/vmess.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tmp/vmess.sh b/tmp/vmess.sh index f46a6c9..39816e6 100644 --- a/tmp/vmess.sh +++ b/tmp/vmess.sh @@ -14,17 +14,17 @@ config_file="/usr/local/etc/xray/config.json" install_dependencies() { if ! type jq &>/dev/null; then echo -e "${green}正在安装 jq...${none}" - apt-get update && apt-get install -y jq + apt-get update && apt-get install -yq jq fi if ! type uuidgen &>/dev/null; then echo -e "${green}正在安装 uuid-runtime...${none}" - apt-get install -y uuid-runtime + apt-get install -yq uuid-runtime fi if ! type sshpass &>/dev/null; then echo -e "${green}正在安装 sshpass...${none}" - apt-get install -y sshpass + apt-get install -yq sshpass fi if ! type xray &>/dev/null; then