Merge pull request #10 from tenten8401/patch-1

Fix stupid logic
This commit is contained in:
Dane Everitt 2017-11-18 22:01:38 -05:00 committed by GitHub
commit ad28186972
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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