Browse Source

SC2086

pull/1863/head
Daniel Gibbs 7 years ago
parent
commit
56630ab66d
  1. 2
      lgsm/functions/command_mods_update.sh

2
lgsm/functions/command_mods_update.sh

@ -72,7 +72,7 @@ sleep 1
# List all installed mods and apply update # List all installed mods and apply update
# Reset line value # Reset line value
installedmodsline="1" installedmodsline="1"
while [ ${installedmodsline} -le ${installedmodscount} ]; do while [ "${installedmodsline}" -le "${installedmodscount}" ]; do
currentmod="$(sed "${installedmodsline}q;d" "${modsinstalledlistfullpath}")" currentmod="$(sed "${installedmodsline}q;d" "${modsinstalledlistfullpath}")"
if [ -n "${currentmod}" ]; then if [ -n "${currentmod}" ]; then
fn_mod_get_info fn_mod_get_info

Loading…
Cancel
Save