Skip to content

Commit

Permalink
Merge branch 'hotfix/v25.1.3'
Browse files Browse the repository at this point in the history
  • Loading branch information
dgibbs64 committed Feb 9, 2025
2 parents 5eeb9b5 + 5e5cd30 commit 93486cc
Show file tree
Hide file tree
Showing 12 changed files with 13 additions and 13 deletions.
4 changes: 2 additions & 2 deletions lgsm/modules/command_backup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -190,15 +190,15 @@ fn_backup_prune() {
fn_backup_relpath() {
# Written by CedarLUG as a "realpath --relative-to" alternative in bash.
# Populate an array of tokens initialized from the rootdir components.
mapfile -t rdirtoks < <(readlink -f "${rootdir}" | sed "s/\// /g")
declare -a rdirtoks=($(readlink -f "${rootdir}" | sed "s/\// /g"))
if [ ${#rdirtoks[@]} -eq 0 ]; then
fn_print_fail_nl "Problem assessing rootdir during relative path assessment"
fn_script_log_fail "Problem assessing rootdir during relative path assessment: ${rootdir}"
core_exit.sh
fi

# Populate an array of tokens initialized from the backupdir components.
mapfile -t bdirtoks < <(readlink -f "${backupdir}" | sed "s/\// /g")
declare -a bdirtoks=($(readlink -f "${backupdir}" | sed "s/\// /g"))
if [ ${#bdirtoks[@]} -eq 0 ]; then
fn_print_fail_nl "Problem assessing backupdir during relative path assessment"
fn_script_log_fail "Problem assessing backupdir during relative path assessment: ${rootdir}"
Expand Down
2 changes: 1 addition & 1 deletion lgsm/modules/core_modules.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

moduleselfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"

modulesversion="v25.1.1"
modulesversion="v25.1.3"

# Core

Expand Down
2 changes: 1 addition & 1 deletion lgsm/modules/update_jk2.sh
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ remotelocation="github.com"

if [ "$(command -v jq 2> /dev/null)" ]; then
fn_print_fail_nl "jq is not installed"
fn_script_log_fatal "jq is not installed"
fn_script_log_fail "jq is not installed"
core_exit.sh
fi

Expand Down
2 changes: 1 addition & 1 deletion lgsm/modules/update_mc.sh
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ remotelocation="mojang.com"

if [ "$(command -v jq 2> /dev/null)" ]; then
fn_print_fail_nl "jq is not installed"
fn_script_log_fatal "jq is not installed"
fn_script_log_fail "jq is not installed"
core_exit.sh
fi

Expand Down
2 changes: 1 addition & 1 deletion lgsm/modules/update_mcb.sh
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ remotelocation="minecraft.net"

if [ "$(command -v jq 2> /dev/null)" ]; then
fn_print_fail_nl "jq is not installed"
fn_script_log_fatal "jq is not installed"
fn_script_log_fail "jq is not installed"
core_exit.sh
fi

Expand Down
2 changes: 1 addition & 1 deletion lgsm/modules/update_mta.sh
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ remotelocation="linux.mtasa.com"

if [ "$(command -v jq 2> /dev/null)" ]; then
fn_print_fail_nl "jq is not installed"
fn_script_log_fatal "jq is not installed"
fn_script_log_fail "jq is not installed"
core_exit.sh
fi

Expand Down
2 changes: 1 addition & 1 deletion lgsm/modules/update_pmc.sh
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ remotelocation="papermc.io"

if [ "$(command -v jq 2> /dev/null)" ]; then
fn_print_fail_nl "jq is not installed"
fn_script_log_fatal "jq is not installed"
fn_script_log_fail "jq is not installed"
core_exit.sh
fi

Expand Down
2 changes: 1 addition & 1 deletion lgsm/modules/update_ts3.sh
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ remotelocation="teamspeak.com"

if [ "$(command -v jq 2> /dev/null)" ]; then
fn_print_fail_nl "jq is not installed"
fn_script_log_fatal "jq is not installed"
fn_script_log_fail "jq is not installed"
core_exit.sh
fi

Expand Down
2 changes: 1 addition & 1 deletion lgsm/modules/update_ut99.sh
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ remotelocation="github.com"

if [ "$(command -v jq 2> /dev/null)" ]; then
fn_print_fail_nl "jq is not installed"
fn_script_log_fatal "jq is not installed"
fn_script_log_fail "jq is not installed"
core_exit.sh
fi

Expand Down
2 changes: 1 addition & 1 deletion lgsm/modules/update_vints.sh
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ remotelocation="vintagestory.at"

if [ "$(command -v jq 2> /dev/null)" ]; then
fn_print_fail_nl "jq is not installed"
fn_script_log_fatal "jq is not installed"
fn_script_log_fail "jq is not installed"
core_exit.sh
fi

Expand Down
2 changes: 1 addition & 1 deletion lgsm/modules/update_xnt.sh
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ remotelocation="github.com"

if [ "$(command -v jq 2> /dev/null)" ]; then
fn_print_fail_nl "jq is not installed"
fn_script_log_fatal "jq is not installed"
fn_script_log_fail "jq is not installed"
core_exit.sh
fi

Expand Down
2 changes: 1 addition & 1 deletion linuxgsm.sh
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ if [ -f ".dev-debug" ]; then
set -x
fi

version="v25.1.1"
version="v25.1.3"
shortname="core"
gameservername="core"
commandname="CORE"
Expand Down

0 comments on commit 93486cc

Please sign in to comment.