Browse Source

Prompt if already installed

pull/1255/head
UltimateByte 8 years ago
committed by GitHub
parent
commit
c9ef22f687
  1. 10
      lgsm/functions/mods_core.sh

10
lgsm/functions/mods_core.sh

@ -172,8 +172,14 @@ fn_mod_already_installed(){
fn_print_warning_nl "${modprettyname} has already been installed" fn_print_warning_nl "${modprettyname} has already been installed"
sleep 1 sleep 1
echo " * Config files, if any, might be overwritten." echo " * Config files, if any, might be overwritten."
echo " * Press ctrl + c to abort." while true; do
sleep 3 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 fi
fn_script_log "${modprettyname} is already installed, overwriting any file." fn_script_log "${modprettyname} is already installed, overwriting any file."
fi fi

Loading…
Cancel
Save