Browse Source

installedmodslist

pull/1255/head
UltimateByte 8 years ago
committed by GitHub
parent
commit
efe7b219a6
  1. 2
      lgsm/functions/mods_core.sh

2
lgsm/functions/mods_core.sh

@ -429,10 +429,10 @@ fn_installed_mods_list(){
installedmodslist=()
while [ $installedmodsline -le $installedmodscount ]; do
currentmod="$(sed "${installedmodsline}q;d" "${modslockfilefullpath}" )"
installedmodslist+="$(sed "${installedmodsline}q;d" "${modslockfilefullpath}")"
fn_mod_get_info_from_command
echo -e "\e[1m${modprettyname}\e[0m - ${moddescription} - ${modsite}"
echo -e " * \e[36m${modcommand}\e[0m"
installedmodslist+=( "${modcommand}" )
let installedmodsline=installedmodsline+1
done
echo ""

Loading…
Cancel
Save