Browse Source

Fixed issue 25 Install ed Command During Installation

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

8
install.sh

@ -46,6 +46,14 @@ then
sudo apt-get -y install coreutils || OwnError "Unable to install tee" sudo apt-get -y install coreutils || OwnError "Unable to install tee"
fi fi
# Checking Ed
if [ ! -x /bin/ed ]
then
echo -e "\033[31m Ed Command Not Found ! \e[0m" | tee -ai $INSTALLLOG
echo -e "\033[34m Installing Ed \e[0m" | tee -ai $INSTALLLOG
sudo apt-get -y install ed || OwnError "Unable to install ed"
fi
# Checking Wget # Checking Wget
if [ ! -x /usr/bin/wget ] if [ ! -x /usr/bin/wget ]
then then

Loading…
Cancel
Save