From 649d50843b686a22f79ab03d685d36b45524aa4a Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Thu, 16 Apr 2015 11:38:11 +0100 Subject: [PATCH] fixed if statement caused error --- functions/fn_update_check | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/functions/fn_update_check b/functions/fn_update_check index d00f1720d..714de242f 100644 --- a/functions/fn_update_check +++ b/functions/fn_update_check @@ -84,7 +84,7 @@ if [ "${requestrestart}" -ge "1" ]; then echo -ne "Applying update...\r" sleep 1 echo -ne "\n" - tmuxwc=$(tmux list-sessions 2>&1|awk '{print $1}'|grep -v failed|grep -E "^${servicename}:"|wc -l) + tmuxwc=$(tmux list-sessions 2>&1|awk '{print $1}'|grep -v failed|grep -Ec "^${servicename}:") if [ "${tmuxwc}" -eq 1 ]; then fn_stop fn_update_dl @@ -147,7 +147,7 @@ if [ "${currentbuild}" -ne "${availablebuild}" ]; then fn_scriptlog "Available build: ${availablebuild}" fn_scriptlog "${currentbuild} > ${availablebuild}" - tmuxwc=$(tmux list-sessions 2>&1|awk '{print $1}'|grep -v failed|grep -E "^${servicename}:"|wc -l) + tmuxwc=$(tmux list-sessions 2>&1|awk '{print $1}'|grep -v failed|grep -Ec "^${servicename}:") if [ "${tmuxwc}" -eq 1 ]; then fn_stop fn_update_dl @@ -271,9 +271,9 @@ fi fn_printdots "Checking for update" if [ "${gamename}" == "Teamspeak 3" ]; then fn_teamspeak3_check -if [ "${engine}" == "goldsource" ]; then +elif [ "${engine}" == "goldsource" ]; then # Goldsource servers bypass checks as fn_steamcmdcheck does not work for appid 90 servers. - tmuxwc=$(tmux list-sessions 2>&1|awk '{print $1}'|grep -v failed|grep -E "^${servicename}:"|wc -l) + tmuxwc=$(tmux list-sessions 2>&1|awk '{print $1}'|grep -v failed|grep -Ec "^${servicename}:") if [ "${tmuxwc}" -eq 1 ]; then fn_stop fn_update_dl