From a422f3c08208594fc2216dedba97c0e9f6545ab1 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sat, 20 Feb 2016 18:29:03 +0000 Subject: [PATCH] corrected if --- functions/install_server_files.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/functions/install_server_files.sh b/functions/install_server_files.sh index d0af67112..be0576e3f 100644 --- a/functions/install_server_files.sh +++ b/functions/install_server_files.sh @@ -87,11 +87,11 @@ echo "" echo "Installing ${gamename} Server" echo "=================================" sleep 1 -if [ -z "${appid}" ]; then +if [ -n "${appid}" ]; then fn_install_server_files_steamcmd fi -if [ ! -z "${appid}" ]||[ "${gamename}" == "GoldenEye: Source" ]; then +if [ -z "${appid}" ]||[ "${gamename}" == "GoldenEye: Source" ]; then fn_install_server_files fi