Update install.sh

This commit is contained in:
dinger1986 2022-06-06 22:26:15 +01:00 committed by GitHub
parent 6172d6c6eb
commit a825cece28
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -6,10 +6,10 @@ uname=$(whoami)
# Setup prereqs for server # Setup prereqs for server
if [[ `which yum` ]]; then if [[ `which yum` ]]; then
sudo yum install unzip sudo yum install unzip -y
elif [[ `which apt` ]]; then elif [[ `which apt` ]]; then
sudo apt-get -y update sudo apt-get update
sudo apt-get -y install unzip sudo apt-get install unzip -y
else else
echo "Unknown Platform, the install might fail" echo "Unknown Platform, the install might fail"
fi fi