From d97f4ae56e35991910486266f83349251d7a263a Mon Sep 17 00:00:00 2001 From: Erreur32 Date: Tue, 25 Jul 2017 21:01:29 +0200 Subject: [PATCH] Update install.sh --- install.sh | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/install.sh b/install.sh index 204c7bd..0ec4f50 100755 --- a/install.sh +++ b/install.sh @@ -137,7 +137,15 @@ stty raw -echo answer2=$( while ! head -c 2 | grep -i '[ny]' ;do true ;done ) stty $old2_stty_cfg if echo "$answer2" | grep -iq "^y" ;then - echo -e "\n\e[92m No apt-get required\e[0m Installation continue... \n"; make install + echo -e "\n\e[92m No apt-get required\e[0m Installation continue... \n"; + if [ -f /usr/bin/motds32 ] + then + echo -e "\n\e[92m - Make file already\e[0m done.\n" + else + echo -e "\n\e[92m -Building binary \e[0m\n" + make install + echo -e "\n\e[92m - Make file\e[0m done.\n" + fi else exit 1 fi