From 578edcaca1944ef73206597f9d05e51fd0631e91 Mon Sep 17 00:00:00 2001 From: Akatsukiro Date: Thu, 18 Jan 2024 16:33:21 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E5=AE=8C=E5=96=84=E5=9F=BA=E7=A1=80?= =?UTF-8?q?=E7=BB=84=E4=BB=B6=E5=86=85=E5=AE=B9?= 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 498edce..4a5660a 100644 --- a/install.sh +++ b/install.sh @@ -82,8 +82,8 @@ install_soft() { install_base() { echo -e "${green}开始安装基础组件${plain}" - (command -v git >/dev/null 2>&1 && command -v curl >/dev/null 2>&1 && command -v wget >/dev/null 2>&1 && command -v unzip >/dev/null 2>&1 && command -v getenforce >/dev/null 2>&1 && command -v gnupg >/dev/null 2>&1) || - (install_soft curl wget git unzip gnupg) + (command -v git >/dev/null 2>&1 && command -v curl >/dev/null 2>&1 && command -v wget >/dev/null 2>&1 && command -v unzip >/dev/null 2>&1 && command -v getenforce >/dev/null 2>&1 && command -v gnupg >/dev/null 2>&1 && command -v lsb_release >/dev/null) || + (install_soft curl wget git unzip gnupg lsb-release ca-certificates) } install_base