From 601b7e55d16749d771d7252987f56740339d0034 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Wed, 18 Jan 2023 15:43:37 +0000 Subject: [PATCH] fix: autoinstall running every time --- entrypoint-user.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/entrypoint-user.sh b/entrypoint-user.sh index 9473ad2..757a7f8 100755 --- a/entrypoint-user.sh +++ b/entrypoint-user.sh @@ -18,7 +18,7 @@ elif [ -d "/linuxgsm/lgsm/functions" ]; then fi # Install game server -if [ -z "$(ls -A -- "serverfiles" >/dev/null 2>&1)" ]; then +if [ -z "$(ls -A -- "serverfiles" 2> /dev/null)" ]; then echo -e "" echo -e "Installing ${GAMESERVER}" echo -e "=================================" @@ -31,7 +31,7 @@ fi echo -e "" echo -e "Starting Update Checks" echo -e "=================================" -nohup watch -n "${UPDATE_CHECK}" exec ./${GAMESERVER} update >/dev/null 2>&1 & +nohup watch -n "${UPDATE_CHECK}" exec ./${GAMESERVER} update > /dev/null 2>&1 & echo -e "update will check every ${UPDATE_CHECK} minutes" # Update game server @@ -67,7 +67,7 @@ else # this keeps the container running # when invoked via docker run # but requires -it or at least -t - tmux set -g status off && tmux attach 2>/dev/null + tmux set -g status off && tmux attach 2> /dev/null fi exec "$@"