From 99dbbaadba8a9ea8caa1e0d264134bc8fd0817cb Mon Sep 17 00:00:00 2001 From: Alex Date: Sat, 6 Nov 2021 00:32:04 +0200 Subject: [PATCH] fix(source): Fix SteamCMD update by adding Sleep 1 Sleep for 1 second before proceeding with SteamCMD update to make sure it doesn't deadlock, similar to source from images repo. Co-authored-by: Red-Thirten --- games/source/entrypoint.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/games/source/entrypoint.sh b/games/source/entrypoint.sh index b04e3c6..4f4bcfe 100644 --- a/games/source/entrypoint.sh +++ b/games/source/entrypoint.sh @@ -22,6 +22,9 @@ # SOFTWARE. # +# Give everything time to initialize for preventing SteamCMD deadlock +sleep 1 + # Default the TZ environment variable to UTC. TZ=${TZ:-UTC} export TZ