Skip to content

Commit d0326cf

Browse files
committed
Merge branch 'hotfix/v24.2.3' into develop
2 parents d86bec9 + 23b3422 commit d0326cf

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

lgsm/modules/check_gamedig.sh

+5-1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@ if [ "$(command -v node)" ] && [ "$(node -v | cut -d 'v' -f 2 | cut -d '.' -f 1)
1010
echo -e "${bold}${lightyellow}Installing Gamedig${default}"
1111
fn_script_log_info "Installing Gamedig"
1212
cd "${lgsmdir}" || exit
13-
wget -N --no-check-certificate "https://raw.githubusercontent.com/GameServerManagers/LinuxGSM/${githubbranch}/package.json"
13+
curl -L -o package.json "https://raw.githubusercontent.com/GameServerManagers/LinuxGSM/${githubbranch}/package.json"
1414
npm install
15+
elif [ "$(command -v node)" ] && [ "$(node -v | cut -d 'v' -f 2 | cut -d '.' -f 1)" -ge 16 ]; then
16+
cd "${lgsmdir}" || exit
17+
curl -s -L -o package.json "https://raw.githubusercontent.com/GameServerManagers/LinuxGSM/${githubbranch}/package.json"
18+
npm update > /dev/null 2>&1
1519
fi

lgsm/modules/core_modules.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

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

11-
modulesversion="v24.2.2"
11+
modulesversion="v24.2.3"
1212

1313
# Core
1414

linuxgsm.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ if [ -f ".dev-debug" ]; then
2424
set -x
2525
fi
2626

27-
version="v24.2.2"
27+
version="v24.2.3"
2828
shortname="core"
2929
gameservername="core"
3030
commandname="CORE"

0 commit comments

Comments
 (0)