Skip to content

Commit

Permalink
Merge branch 'hotfix/v25.1.4' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
dgibbs64 committed Feb 9, 2025
2 parents bad56c7 + cd208f6 commit 0c6c058
Show file tree
Hide file tree
Showing 11 changed files with 11 additions and 11 deletions.
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.3"
modulesversion="v25.1.4"

# 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 @@ -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
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 @@ -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
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 @@ -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
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 @@ -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
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 @@ -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
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 @@ -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
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 @@ -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
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 @@ -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
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 @@ -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
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.3"
version="v25.1.4"
shortname="core"
gameservername="core"
commandname="CORE"
Expand Down

0 comments on commit 0c6c058

Please sign in to comment.