Browse Source

corrected if

pull/743/head
Daniel Gibbs 9 years ago
parent
commit
a422f3c082
  1. 4
      functions/install_server_files.sh

4
functions/install_server_files.sh

@ -87,11 +87,11 @@ echo ""
echo "Installing ${gamename} Server" echo "Installing ${gamename} Server"
echo "=================================" echo "================================="
sleep 1 sleep 1
if [ -z "${appid}" ]; then if [ -n "${appid}" ]; then
fn_install_server_files_steamcmd fn_install_server_files_steamcmd
fi fi
if [ ! -z "${appid}" ]||[ "${gamename}" == "GoldenEye: Source" ]; then if [ -z "${appid}" ]||[ "${gamename}" == "GoldenEye: Source" ]; then
fn_install_server_files fn_install_server_files
fi fi

Loading…
Cancel
Save