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 <rehlmgaming@gmail.com>
This commit is contained in:
Alex 2021-11-06 00:32:04 +02:00
parent 4a0de42544
commit 99dbbaadba
No known key found for this signature in database
GPG key ID: C6172741CCF116A1

View file

@ -22,6 +22,9 @@
# SOFTWARE. # SOFTWARE.
# #
# Give everything time to initialize for preventing SteamCMD deadlock
sleep 1
# Default the TZ environment variable to UTC. # Default the TZ environment variable to UTC.
TZ=${TZ:-UTC} TZ=${TZ:-UTC}
export TZ export TZ