From 7afef2a16ed68ac6a58fad6f3093552fbb6555c2 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Mon, 19 Jun 2017 23:34:50 +0200 Subject: [PATCH] fixed syntax errors --- lgsm/functions/check_steamcmd.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lgsm/functions/check_steamcmd.sh b/lgsm/functions/check_steamcmd.sh index eb9e256d4..bb205592b 100644 --- a/lgsm/functions/check_steamcmd.sh +++ b/lgsm/functions/check_steamcmd.sh @@ -18,14 +18,14 @@ fn_install_steamcmd(){ fn_check_steamcmd_user(){ # Checks if steamuser is setup. if [ "${steamuser}" == "username" ]; then - if [ "${legacymode}" == "1" ] then + if [ "${legacymode}" == "1" ]; then fn_print_fail_nl "Steam login not set. Update steamuser in ${selfname}" else fn_print_fail_nl "Steam login not set. Update steamuser in ${configdirserver}" fi echo " * Change steamuser=\"username\" to a valid steam login." if [ -d "${lgsmlogdir}" ]; then - if [ "${legacymode}" == "1" ] then + if [ "${legacymode}" == "1" ]; then fn_script_log_fatal "Steam login not set. Update steamuser in ${selfname}" else fn_script_log_fatal "Steam login not set. Update steamuser in ${configdirserver}" @@ -62,4 +62,4 @@ fn_check_steamcmd_sh(){ } fn_check_steamcmd_user -fn_check_steamcmd_sh \ No newline at end of file +fn_check_steamcmd_sh