diff --git a/lgsm/modules/core_modules.sh b/lgsm/modules/core_modules.sh index af80ba05f..92aab59fd 100644 --- a/lgsm/modules/core_modules.sh +++ b/lgsm/modules/core_modules.sh @@ -8,7 +8,7 @@ moduleselfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")" -modulesversion="v25.1.3" +modulesversion="v25.1.4" # Core diff --git a/lgsm/modules/update_jk2.sh b/lgsm/modules/update_jk2.sh index af2709ec6..098154499 100644 --- a/lgsm/modules/update_jk2.sh +++ b/lgsm/modules/update_jk2.sh @@ -152,7 +152,7 @@ fn_update_compare() { # The location where the builds are checked and downloaded. remotelocation="github.com" -if [ "$(command -v jq 2> /dev/null)" ]; then +if [ ! "$(command -v jq 2> /dev/null)" ]; then fn_print_fail_nl "jq is not installed" fn_script_log_fail "jq is not installed" core_exit.sh diff --git a/lgsm/modules/update_mc.sh b/lgsm/modules/update_mc.sh index 897b0df27..0ce4e2e39 100644 --- a/lgsm/modules/update_mc.sh +++ b/lgsm/modules/update_mc.sh @@ -167,7 +167,7 @@ fn_update_compare() { # The location where the builds are checked and downloaded. remotelocation="mojang.com" -if [ "$(command -v jq 2> /dev/null)" ]; then +if [ ! "$(command -v jq 2> /dev/null)" ]; then fn_print_fail_nl "jq is not installed" fn_script_log_fail "jq is not installed" core_exit.sh diff --git a/lgsm/modules/update_mcb.sh b/lgsm/modules/update_mcb.sh index 29faf3363..8154b813e 100644 --- a/lgsm/modules/update_mcb.sh +++ b/lgsm/modules/update_mcb.sh @@ -175,7 +175,7 @@ fn_update_compare() { # The location where the builds are checked and downloaded. remotelocation="minecraft.net" -if [ "$(command -v jq 2> /dev/null)" ]; then +if [ ! "$(command -v jq 2> /dev/null)" ]; then fn_print_fail_nl "jq is not installed" fn_script_log_fail "jq is not installed" core_exit.sh diff --git a/lgsm/modules/update_mta.sh b/lgsm/modules/update_mta.sh index 0946cf642..c7214665d 100644 --- a/lgsm/modules/update_mta.sh +++ b/lgsm/modules/update_mta.sh @@ -160,7 +160,7 @@ fn_update_compare() { # The location where the builds are checked and downloaded. remotelocation="linux.mtasa.com" -if [ "$(command -v jq 2> /dev/null)" ]; then +if [ ! "$(command -v jq 2> /dev/null)" ]; then fn_print_fail_nl "jq is not installed" fn_script_log_fail "jq is not installed" core_exit.sh diff --git a/lgsm/modules/update_pmc.sh b/lgsm/modules/update_pmc.sh index 0a883c150..9c288827e 100644 --- a/lgsm/modules/update_pmc.sh +++ b/lgsm/modules/update_pmc.sh @@ -177,7 +177,7 @@ fn_update_compare() { # The location where the builds are checked and downloaded. remotelocation="papermc.io" -if [ "$(command -v jq 2> /dev/null)" ]; then +if [ ! "$(command -v jq 2> /dev/null)" ]; then fn_print_fail_nl "jq is not installed" fn_script_log_fail "jq is not installed" core_exit.sh diff --git a/lgsm/modules/update_ts3.sh b/lgsm/modules/update_ts3.sh index abc9a60c8..92f9d3489 100644 --- a/lgsm/modules/update_ts3.sh +++ b/lgsm/modules/update_ts3.sh @@ -171,7 +171,7 @@ fi # The location where the builds are checked and downloaded. remotelocation="teamspeak.com" -if [ "$(command -v jq 2> /dev/null)" ]; then +if [ ! "$(command -v jq 2> /dev/null)" ]; then fn_print_fail_nl "jq is not installed" fn_script_log_fail "jq is not installed" core_exit.sh diff --git a/lgsm/modules/update_ut99.sh b/lgsm/modules/update_ut99.sh index e8d4a2848..5f30bdc23 100644 --- a/lgsm/modules/update_ut99.sh +++ b/lgsm/modules/update_ut99.sh @@ -153,7 +153,7 @@ fn_update_compare() { # The location where the builds are checked and downloaded. remotelocation="github.com" -if [ "$(command -v jq 2> /dev/null)" ]; then +if [ ! "$(command -v jq 2> /dev/null)" ]; then fn_print_fail_nl "jq is not installed" fn_script_log_fail "jq is not installed" core_exit.sh diff --git a/lgsm/modules/update_vints.sh b/lgsm/modules/update_vints.sh index e683156db..d468d58d4 100644 --- a/lgsm/modules/update_vints.sh +++ b/lgsm/modules/update_vints.sh @@ -160,7 +160,7 @@ fn_update_compare() { # The location where the builds are checked and downloaded. remotelocation="vintagestory.at" -if [ "$(command -v jq 2> /dev/null)" ]; then +if [ ! "$(command -v jq 2> /dev/null)" ]; then fn_print_fail_nl "jq is not installed" fn_script_log_fail "jq is not installed" core_exit.sh diff --git a/lgsm/modules/update_xnt.sh b/lgsm/modules/update_xnt.sh index 05b73d33c..7014ab1a9 100644 --- a/lgsm/modules/update_xnt.sh +++ b/lgsm/modules/update_xnt.sh @@ -160,7 +160,7 @@ fn_update_compare() { # The location where the builds are checked and downloaded. remotelocation="github.com" -if [ "$(command -v jq 2> /dev/null)" ]; then +if [ ! "$(command -v jq 2> /dev/null)" ]; then fn_print_fail_nl "jq is not installed" fn_script_log_fail "jq is not installed" core_exit.sh diff --git a/linuxgsm.sh b/linuxgsm.sh index d73ee7094..2b464f99a 100755 --- a/linuxgsm.sh +++ b/linuxgsm.sh @@ -24,7 +24,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="v25.1.3" +version="v25.1.4" shortname="core" gameservername="core" commandname="CORE"