From 142f0fc6c95a328224c4c202c81e9b29d0dcfa08 Mon Sep 17 00:00:00 2001 From: dami Date: Wed, 2 Apr 2025 11:06:47 +0800 Subject: [PATCH] Update install.sh --- scripts/install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/install.sh b/scripts/install.sh index 386f36c25..d13c94835 100755 --- a/scripts/install.sh +++ b/scripts/install.sh @@ -53,11 +53,11 @@ elif grep -Eqi "Amazon Linux" /etc/issue || grep -Eqi "Amazon Linux" /etc/*-rele yum install -y wget curl zip unzip tar crontabs elif grep -Eqi "Debian" /etc/issue || grep -Eqi "Debian" /etc/os-release; then OSNAME='debian' - apt update -y + # apt update -y apt install -y wget curl zip unzip tar cron elif grep -Eqi "Ubuntu" /etc/issue || grep -Eqi "Ubuntu" /etc/os-release; then OSNAME='ubuntu' - apt update -y + # apt update -y apt install -y wget curl zip unzip tar cron else OSNAME='unknow'