Merge branch 'hotfix/v24.3.2'

This commit is contained in:
Daniel Gibbs 2024-10-26 21:59:04 +01:00
commit eae2f42db7
No known key found for this signature in database
GPG Key ID: 2076B128385E8C55
4 changed files with 4 additions and 4 deletions

View File

@ -8,7 +8,7 @@
moduleselfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")" moduleselfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
modulesversion="v24.3.1" modulesversion="v24.3.2"
# Core # Core

View File

@ -1310,7 +1310,7 @@ fn_info_game_fctr() {
# get server version if installed. # get server version if installed.
local factoriobin="${executabledir}${executable:1}" local factoriobin="${executabledir}${executable:1}"
if [ -f "${factoriobin}" ]; then if [ -f "${factoriobin}" ]; then
serverversion="$(${factoriobin} --version | grep "Version:" | awk '{print $2}')" serverversion="$(${factoriobin} --version | grep -m 1 "Version:" | awk '{print $2}')"
fi fi
} }

View File

@ -20,7 +20,7 @@ fn_update_localbuild() {
# Uses executable to get local build. # Uses executable to get local build.
if [ -d "${executabledir}" ]; then if [ -d "${executabledir}" ]; then
cd "${executabledir}" || exit cd "${executabledir}" || exit
localbuild=$(${executable} --version | grep "Version:" | awk '{print $2}') localbuild=$(${executable} --version | grep -m 1 "Version:" | awk '{print $2}')
fi fi
if [ -z "${localbuild}" ]; then if [ -z "${localbuild}" ]; then
fn_print_error "Checking local build: ${remotelocation}: missing local build info" fn_print_error "Checking local build: ${remotelocation}: missing local build info"

View File

@ -24,7 +24,7 @@ if [ -f ".dev-debug" ]; then
set -x set -x
fi fi
version="v24.3.1" version="v24.3.2"
shortname="core" shortname="core"
gameservername="core" gameservername="core"
commandname="CORE" commandname="CORE"