Browse Source

Trying recursive installed mods display

pull/1255/head
UltimateByte 8 years ago
committed by GitHub
parent
commit
1e83458917
  1. 25
      lgsm/functions/command_mods_update.sh

25
lgsm/functions/command_mods_update.sh

@ -6,5 +6,28 @@
# Description: Updates installed mods along with mods_list.sh.
local commandname="MODS"
local commandaction="Mod Update"
local commandaction="Mods Update"
local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))"
check.sh
mods_list.sh
fn_mods_update_init(){
fn_script_log "Entering mods & addons update"
echo "================================="
echo "${gamename} mods & addons update"
echo ""
# Installed mod dir is "${modslockfilefullpath}"
# How many mods will be updated
installedmodscount="$(cat "${modslockfilefullpath}" | wc -l)"
# Loop showing mods to update
for (( installedmodsline=$installedmodscount; installedmodsline<=5; installedmodsline++ )); do
sed -n 'installedmodsline{p;q}' "${modslockfilefullpath}"
done
currentmod="${usermodselect}"
fn_mod_get_info_from_command
fn_print_dots_nl "Updating ${modprettyname}"
sleep 1
fn_script_log "Updating ${modprettyname}."
}

Loading…
Cancel
Save