Browse Source

fix(check-update): not getting steamcmd executable for check-update (#4180)

pull/4181/head
Daniel Gibbs 2 years ago
committed by GitHub
parent
commit
818015d189
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      lgsm/functions/check.sh
  2. 2
      lgsm/functions/command_check_update.sh

2
lgsm/functions/check.sh

@ -77,7 +77,7 @@ for allowed_command in "${allowed_commands_array[@]}"; do
fi
done
allowed_commands_array=(DEBUG START UPDATE VALIDATE)
allowed_commands_array=(DEBUG START UPDATE VALIDATE CHECK-UPDATE)
for allowed_command in "${allowed_commands_array[@]}"; do
if [ "${allowed_command}" == "${commandname}" ]; then
if [ "${appid}" ]; then

2
lgsm/functions/command_check_update.sh

@ -6,7 +6,7 @@
# Description: Handles updating of servers.
commandname="CHECK-UPDATE"
commandaction="check for Update"
commandaction="Check for Update"
functionselfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
fn_firstcommand_set

Loading…
Cancel
Save