Fix stupid logic
Turns out it was only running if SRCDS_APPID was zero. Erhm.
This commit is contained in:
parent
76707d563c
commit
7cd539d2b7
|
|
@ -7,7 +7,7 @@ cd /home/container
|
|||
export INTERNAL_IP=`ip route get 1 | awk '{print $NF;exit}'`
|
||||
|
||||
# Update Source Server
|
||||
if [ -z ${SRCDS_APPID} ]; then
|
||||
if [ ! -z ${SRCDS_APPID} ]; then
|
||||
./steamcmd/steamcmd.sh +login anonymous +force_install_dir /home/container +app_update ${SRCDS_APPID} +quit
|
||||
fi
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user