Skip to content

Commit 858184c

Browse files
committed
Merge branch 'hotfix/v23.2.2'
2 parents eb88d35 + 976485b commit 858184c

10 files changed

+10
-10
lines changed

lgsm/functions/check.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ for allowed_command in "${allowed_commands_array[@]}"; do
7777
fi
7878
done
7979

80-
allowed_commands_array=(DEBUG START UPDATE VALIDATE)
80+
allowed_commands_array=(DEBUG START UPDATE VALIDATE CHECK-UPDATE)
8181
for allowed_command in "${allowed_commands_array[@]}"; do
8282
if [ "${allowed_command}" == "${commandname}" ]; then
8383
if [ "${appid}" ]; then

lgsm/functions/command_check_update.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
# Description: Handles updating of servers.
77

88
commandname="CHECK-UPDATE"
9-
commandaction="check for Update"
9+
commandaction="Check for Update"
1010
functionselfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
1111
fn_firstcommand_set
1212

lgsm/functions/core_functions.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
functionselfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
1010

11-
modulesversion="v23.2.1"
11+
modulesversion="v23.2.2"
1212

1313
# Core
1414

lgsm/functions/update_factorio.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ fn_update_localbuild() {
1818
# Gets local build info.
1919
fn_print_dots "Checking local build: ${remotelocation}"
2020
# Uses executable to get local build.
21-
if [ -d "${exutabledir}" ]; then
21+
if [ -d "${executabledir}" ]; then
2222
cd "${executabledir}" || exit
2323
localbuild=$(${executable} --version | grep "Version:" | awk '{print $2}')
2424
fi

lgsm/functions/update_vintagestory.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ fn_update_localbuild() {
1818
# Gets local build info.
1919
fn_print_dots "Checking local build: ${remotelocation}"
2020
# Uses executable to get local build.
21-
if [ -d "${exutabledir}" ]; then
21+
if [ -d "${executabledir}" ]; then
2222
cd "${executabledir}" || exit
2323
localbuild="$(${preexecutable} ${executable} --version | sed '/^[[:space:]]*$/d')"
2424
fi

linuxgsm.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ if [ -f ".dev-debug" ]; then
2020
set -x
2121
fi
2222

23-
version="v23.2.1"
23+
version="v23.2.2"
2424
shortname="core"
2525
gameservername="core"
2626
commandname="CORE"

tests/tests_fctrserver.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ if [ -f ".dev-debug" ]; then
2020
set -x
2121
fi
2222

23-
version="v23.2.1"
23+
version="v23.2.2"
2424
shortname="fctr"
2525
gameservername="fctrserver"
2626
commandname="CORE"

tests/tests_jc2server.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ if [ -f ".dev-debug" ]; then
2020
set -x
2121
fi
2222

23-
version="v23.2.1"
23+
version="v23.2.2"
2424
shortname="jc2"
2525
gameservername="jc2server"
2626
commandname="CORE"

tests/tests_mcserver.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ if [ -f ".dev-debug" ]; then
2020
set -x
2121
fi
2222

23-
version="v23.2.1"
23+
version="v23.2.2"
2424
shortname="mc"
2525
gameservername="mcserver"
2626
commandname="CORE"

tests/tests_ts3server.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ if [ -f ".dev-debug" ]; then
2020
set -x
2121
fi
2222

23-
version="v23.2.1"
23+
version="v23.2.2"
2424
shortname="ts3"
2525
gameservername="ts3server"
2626
commandname="CORE"

0 commit comments

Comments
 (0)