From ae864bb92bba5cc040ee96c9b1dc6cb8a90c8087 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Thu, 26 Jan 2017 19:46:00 +0000 Subject: [PATCH] More UI modifications --- lgsm/functions/command_mods_remove.sh | 19 +++++++++---------- lgsm/functions/mods_core.sh | 4 ++-- 2 files changed, 11 insertions(+), 12 deletions(-) diff --git a/lgsm/functions/command_mods_remove.sh b/lgsm/functions/command_mods_remove.sh index 28a1a6a43..1a0799122 100644 --- a/lgsm/functions/command_mods_remove.sh +++ b/lgsm/functions/command_mods_remove.sh @@ -74,19 +74,18 @@ while [ "${modfileline}" -le "${modsfilelistsize}" ]; do fn_script_log "Removing: ${modinstalldir}/${currentfileremove}" if [ -f "${modinstalldir}/${currentfileremove}" ]||[ -d "${modinstalldir}/${currentfileremove}" ]; then rm -rf "${modinstalldir}/${currentfileremove}" - local exitcode=$? - if [ ${exitcode} -ne 0 ]; then - fn_print_fail_eol_nl - core_exit.sh - else - fn_print_ok_eol_nl - fi + ((exitcode=$?)) fi tput rc; tput el - printf "removing ${modprettyname} ${modfileline} / ${modsfilelistsize} : ${currentfileremove}..." + printf "removing ${modprettyname} ${modfileline} / ${modsfilelistsize} : ${currentfileremove}..." ((modfileline++)) done -fn_print_ok_eol_nl +if [ ${exitcode} -ne 0 ]; then + fn_print_fail_eol_nl + core_exit.sh +else + fn_print_ok_eol_nl +fi sleep 0.5 # Remove file list echo -en "removing ${modcommand}-files.txt..." @@ -102,7 +101,7 @@ else fi # Remove mods from installed mods list -echo -en "removing ${modcommand} from ${modslockfile}..." +echo -en "removing ${modcommand} from ${modsinstalledlist}..." sleep 0.5 fn_script_log "Removing: ${modcommand} from ${modsinstalledlist}" sed -i "/^${modcommand}$/d" "${modsinstalledlistfullpath}" diff --git a/lgsm/functions/mods_core.sh b/lgsm/functions/mods_core.sh index 6169d95fb..5d42e15e0 100644 --- a/lgsm/functions/mods_core.sh +++ b/lgsm/functions/mods_core.sh @@ -423,9 +423,9 @@ fn_mods_check_installed(){ # If no mods are found if [ ${installedmodscount} -eq 0 ]; then echo "" - fn_print_information_nl "No installed mods or addons were found" + fn_print_failure_nl "No installed mods or addons were found" echo " * Install mods using LGSM first with: ./${selfname} mods-install" - fn_script_log_info "No installed mods or addons were found." + fn_script_log_fail "No installed mods or addons were found." core_exit.sh fi }