From a825cece28001f6a8fc5d01319f2894bd126c47c Mon Sep 17 00:00:00 2001 From: dinger1986 Date: Mon, 6 Jun 2022 22:26:15 +0100 Subject: [PATCH] Update install.sh --- install.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/install.sh b/install.sh index 37534ec..39a76c6 100644 --- a/install.sh +++ b/install.sh @@ -6,10 +6,10 @@ uname=$(whoami) # Setup prereqs for server if [[ `which yum` ]]; then - sudo yum install unzip + sudo yum install unzip -y elif [[ `which apt` ]]; then - sudo apt-get -y update - sudo apt-get -y install unzip + sudo apt-get update + sudo apt-get install unzip -y else echo "Unknown Platform, the install might fail" fi