From c9ef22f68778706cb9603a0ef277638cae49ab12 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 19 Jan 2017 01:36:52 +0100 Subject: [PATCH] Prompt if already installed --- lgsm/functions/mods_core.sh | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/lgsm/functions/mods_core.sh b/lgsm/functions/mods_core.sh index 5c62e8981..3268379ad 100644 --- a/lgsm/functions/mods_core.sh +++ b/lgsm/functions/mods_core.sh @@ -172,8 +172,14 @@ fn_mod_already_installed(){ fn_print_warning_nl "${modprettyname} has already been installed" sleep 1 echo " * Config files, if any, might be overwritten." - echo " * Press ctrl + c to abort." - sleep 3 + while true; do + read -e -i "y" -p "Continue? [Y/n]" yn + case $yn in + [Yy]* ) break;; + [Nn]* ) echo Exiting; core_exit.sh;; + * ) echo "Please answer yes or no.";; + esac + done fi fn_script_log "${modprettyname} is already installed, overwriting any file." fi