Browse Source

check fails in the loop and echo the right files amount

pull/1255/head
UltimateByte 8 years ago
committed by GitHub
parent
commit
3c3d68fbdc
  1. 14
      lgsm/functions/command_mods_remove.sh

14
lgsm/functions/command_mods_remove.sh

@ -75,19 +75,17 @@ while [ "${modfileline}" -le "${modsfilelistsize}" ]; do
if [ -f "${modinstalldir}/${currentfileremove}" ]||[ -d "${modinstalldir}/${currentfileremove}" ]; then if [ -f "${modinstalldir}/${currentfileremove}" ]||[ -d "${modinstalldir}/${currentfileremove}" ]; then
rm -rf "${modinstalldir}/${currentfileremove}" rm -rf "${modinstalldir}/${currentfileremove}"
local exitcode=$? local exitcode=$?
if [ ${exitcode} -ne 0 ]; then
fn_print_fail_eol_nl
core_exit.sh
else
fn_print_ok_eol_nl
fi
fi fi
tput rc; tput el tput rc; tput el
printf "removing ${modprettyname} ${modfileline} / ${modsfilelistsize} : ${currentfileremove}..." printf "removing ${modprettyname} ${modfileline} / ${modsfilelistsize} : ${currentfileremove}..."
((modfileline++)) ((modfileline++))
done done
tput rc; tput ed;
echo -ne "sed ${modprettyname} ${modfileline} / ${modsfilelistsize}..."
if [ ${exitcode} -ne 0 ]; then
fn_print_fail_eol_nl
core_exit.sh
else
fn_print_ok_eol_nl
fi
sleep 0.5 sleep 0.5
# Remove file list # Remove file list

Loading…
Cancel
Save