From 099f25bf1c853d3280ac7b97b2d2a45a1aff8253 Mon Sep 17 00:00:00 2001 From: David Schroeder Date: Sun, 14 May 2023 17:21:14 -0500 Subject: [PATCH] Update run.sh --- run.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/run.sh b/run.sh index b949fd59..1a6b889f 100755 --- a/run.sh +++ b/run.sh @@ -5,7 +5,7 @@ source /opt/idssys/defaults/colors.inc source /opt/idssys/defaults/default.inc source /opt/idssys/powerwall/powerwall.conf -if [[ "${noupdate}" != *"${1}"* ]] && [[ "${noupdate}" != *"${2}"* ]] && [[ "${1}" != *"service"* ]] && [[ "${2}" != *"service"* ]]; then +if [ "${2}" == "update" ]; then if curl -s --head --request GET https://git.schroedercity.com | grep "HTTP/2 200" > /dev/null; then if [ "${2}" != "q" ]; then echo -en "${idsCL[LightCyan]}Checking for updates...${idsCL[Default]}" @@ -48,8 +48,9 @@ if [[ "${noupdate}" != *"${1}"* ]] && [[ "${noupdate}" != *"${2}"* ]] && [[ "${1 echo -e "\e[0K\r ${idsCL[LightCyan]}No Updates Available${idsCL[Default]}" fi fi +else + /opt/idssys/powerwall/powerwall.sh $1 $2 $3 $4 fi -/opt/idssys/powerwall/powerwall.sh $1 $2 $3 $4 exit 0