Update install.sh

This commit is contained in:
dinger1986
2022-06-06 22:26:15 +01:00
committed by GitHub
parent 6172d6c6eb
commit a825cece28

View File

@@ -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