Browse Source

feat: add environment variable check to the update command so the user can enable/disable it using a new env variable

pull/92/head
FeneralGeldmarschall 4 months ago
parent
commit
ec634c500f
  1. 3
      entrypoint-user.sh

3
entrypoint-user.sh

@ -110,7 +110,8 @@ if [ -z "${install}" ]; then
echo -e "Validating ${GAMESERVER}"
echo -e "================================="
./"${GAMESERVER}" validate
else
fi
if [ "${UPDATE_ON_START,,}" = "true" ]; then
echo -e "Checking for Update ${GAMESERVER}"
echo -e "================================="
./"${GAMESERVER}" update

Loading…
Cancel
Save