Skip to content

Commit 63c7f41

Browse files
committed
Release v23.2.2
2 parents ff19348 + 976485b commit 63c7f41

13 files changed

+13
-13
lines changed

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
module_selfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
1010

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

1313
# Core
1414

lgsm/functions/core_modules.sh

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

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

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

1313
# Core
1414

lgsm/modules/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/modules/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
moduleselfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
1111
fn_firstcommand_set
1212

lgsm/modules/core_functions.sh

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

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

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

1313
# Core
1414

lgsm/modules/core_modules.sh

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

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

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

1313
# Core
1414

lgsm/modules/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/modules/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"

0 commit comments

Comments
 (0)