File tree 3 files changed +7
-3
lines changed
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)
10
10
echo -e " ${bold}${lightyellow} Installing Gamedig${default} "
11
11
fn_script_log_info " Installing Gamedig"
12
12
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"
14
14
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
15
19
fi
Original file line number Diff line number Diff line change 8
8
9
9
moduleselfname=" $( basename " $( readlink -f " ${BASH_SOURCE[0]} " ) " ) "
10
10
11
- modulesversion=" v24.2.2 "
11
+ modulesversion=" v24.2.3 "
12
12
13
13
# Core
14
14
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ if [ -f ".dev-debug" ]; then
24
24
set -x
25
25
fi
26
26
27
- version=" v24.2.2 "
27
+ version=" v24.2.3 "
28
28
shortname=" core"
29
29
gameservername=" core"
30
30
commandname=" CORE"
You can’t perform that action at this time.
0 commit comments