File tree Expand file tree Collapse file tree 3 files changed +7
-3
lines changed
Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Original file line number Diff line number Diff 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
1519fi
Original file line number Diff line number Diff line change 88
99moduleselfname=" $( basename " $( readlink -f " ${BASH_SOURCE[0]} " ) " ) "
1010
11- modulesversion=" v24.2.2 "
11+ modulesversion=" v24.2.3 "
1212
1313# Core
1414
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ if [ -f ".dev-debug" ]; then
2424 set -x
2525fi
2626
27- version=" v24.2.2 "
27+ version=" v24.2.3 "
2828shortname=" core"
2929gameservername=" core"
3030commandname=" CORE"
You can’t perform that action at this time.
0 commit comments