Update Install.sh

This commit is contained in:
Erreur32 2017-07-20 14:46:30 +02:00
parent c0b68c7934
commit 7ad1ab7cbb
1 changed files with 2 additions and 2 deletions

View File

@ -19,9 +19,9 @@ stty raw -echo
answer=$( while ! head -c 1 | grep -i '[ny]' ;do true ;done )
stty $old_stty_cfg
if echo "$answer" | grep -iq "^y" ;then
echo "/n ; Yes" ; apt-get install -y ntp figlet; make install
echo -e "/n Yes install ntp figlet" ; apt-get install -y ntp figlet; make install
else
echo "/n ; No continue without"; make install
echo -e "/n No continue without"; make install
fi