From 34db3400cfa92e5922dddc992871a3c0d44c2704 Mon Sep 17 00:00:00 2001 From: Georg Pfuetzenreuter Date: Fri, 23 Jul 2021 18:31:58 +0200 Subject: Fixed condition. Signed-off-by: Georg Pfuetzenreuter --- scripts/sh/deploy_ergo.sh | 2 +- scripts/sh/remove_ergo.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/sh/deploy_ergo.sh b/scripts/sh/deploy_ergo.sh index 670e0e7..b7486a4 100755 --- a/scripts/sh/deploy_ergo.sh +++ b/scripts/sh/deploy_ergo.sh @@ -4,7 +4,7 @@ echo "Detected $DISTRIB" if [[ ${DISTRIB} = "openSUSE Leap" ]] echo then -if [ ! /opt/ergo ] +if [ ! -d /opt/ergo ] then GOVER=`go version | { read _ _ v _; echo ${v#go}; }` echo "Detected Go $GOVER" diff --git a/scripts/sh/remove_ergo.sh b/scripts/sh/remove_ergo.sh index c9af4de..0634946 100755 --- a/scripts/sh/remove_ergo.sh +++ b/scripts/sh/remove_ergo.sh @@ -1,5 +1,5 @@ #!/bin/sh -if [ ! /opt/ergo ] +if [ ! -d /opt/ergo ] echo then read -p "Remove Ergo? This will kill running Ergo services and cause data loss. " -n 1 -r -- cgit v1.2.3