Browse Source

fixed typo that says install instead of remove

pull/1639/head
Daniel Gibbs 8 years ago
parent
commit
19a3d31763
  1. 2
      lgsm/functions/command_mods_remove.sh

2
lgsm/functions/command_mods_remove.sh

@ -32,7 +32,7 @@ done
echo ""
# Keep prompting as long as the user input doesn't correspond to an available mod
while [[ ! " ${installedmodslist[@]} " =~ " ${usermodselect} " ]]; do
echo -en "Enter an ${cyan}addon/mod${default} to ${green}install${default} (or exit to abort): "
echo -en "Enter an ${cyan}addon/mod${default} to ${red}remove${default} (or exit to abort): "
read -r usermodselect
# Exit if user says exit or abort
if [ "${usermodselect}" == "exit" ]||[ "${usermodselect}" == "abort" ]; then

Loading…
Cancel
Save