Browse Source

Install Curl On PreChecks

old-stable
Mitesh Shah 12 years ago
parent
commit
a23c80a847
  1. 8
      install.sh

8
install.sh

@ -53,6 +53,14 @@ then
sudo apt-get -y install wget || OwnError "Unable To Install Wget" sudo apt-get -y install wget || OwnError "Unable To Install Wget"
fi fi
# Checking Curl
if [ ! -x /usr/bin/curl ]
then
echo -e "\033[31m Curl Command Not Found ! \e[0m" | tee -ai $INSTALLLOG
echo -e "\033[34m Installing Curl \e[0m" | tee -ai $INSTALLLOG
sudo apt-get -y install curl || OwnError "Unable To Install Curl"
fi
# Checking Tar # Checking Tar
if [ ! -x /bin/tar ] if [ ! -x /bin/tar ]
then then

Loading…
Cancel
Save