Browse Source

Disable update mods

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

61
lgsm/functions/command_mods_update.sh

@ -50,33 +50,44 @@ fn_mods_update_loop(){
if [ -n "${currentmod}" ]; then if [ -n "${currentmod}" ]; then
# Get mod info # Get mod info
fn_mod_get_info_from_command fn_mod_get_info_from_command
fn_print_dots_nl "Updating ${modprettyname}" # Don't update the mod if it's policy is to "NOUPDATE"
fn_script_log "Updating ${modprettyname}." if [ "${modkeepfiles}" == "NOUPDATE" ]; then
# Check and create required directories fn_print_warning "${modprettyname} update has been disabled by LGSM."
fn_mods_dir echo " * Usual reason is to prevent erasing custom files."
# Clear lgsm/tmp/mods dir if exists then recreate it echo " * If you still wish to update this mod:
fn_clear_tmp_mods echo " * 1) Backup your critical mod files
fn_mods_tmpdir echo " * 2) Uninstall the mod with ./${selfname} mods-uninstall (optionnal)
# Download mod echo " * 3) Re-install the mod with ./${selfname} mods-install"
fn_mod_dl else
# Extract the mod fn_print_dots_nl "Updating ${modprettyname}"
fn_mod_extract fn_script_log "Updating ${modprettyname}."
# Remove files that should not be erased # Check and create required directories
# fn_remove_cfg_files fn_mods_dir
# Convert to lowercase if needed # Clear lgsm/tmp/mods dir if exists then recreate it
fn_mod_lowercase fn_clear_tmp_mods
# Build a file list fn_mods_tmpdir
fn_mod_fileslist # Download mod
# Copying to destination fn_mod_dl
fn_mod_copy_destination # Extract the mod
# Ending with installation routines fn_mod_extract
fn_mod_add_list # Remove files that should not be erased
fn_clear_tmp_mods # fn_remove_cfg_files
fn_print_ok_nl "${modprettyname} installed." # Convert to lowercase if needed
fn_script_log "${modprettyname} installed." fn_mod_lowercase
let installedmodsline=installedmodsline+1 # Build a file list
fn_mod_fileslist
# Copying to destination
fn_mod_copy_destination
# Ending with installation routines
fn_mod_add_list
fn_clear_tmp_mods
fn_print_ok_nl "${modprettyname} installed."
fn_script_log "${modprettyname} installed."
let installedmodsline=installedmodsline+1
fi
else else
fn_print_fail "No mod was selected." fn_print_fail "No mod was selected."
fn_script_log_fail "No mod was selected."
core_exit.sh core_exit.sh
fi fi
done done

Loading…
Cancel
Save