From 99b89352be79f3b700de3efa1b48961097aea464 Mon Sep 17 00:00:00 2001 From: Geoffrey Frogeye Date: Sun, 20 Nov 2016 20:39:43 +0100 Subject: [PATCH] Multiple states of non-install --- scripts/debloc.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/debloc.sh b/scripts/debloc.sh index 880d1b0..f0797cc 100755 --- a/scripts/debloc.sh +++ b/scripts/debloc.sh @@ -72,13 +72,13 @@ function _debloc-globallyInstalled { # package rm -f $STATUS > /dev/null return 0 fi - cat $STATUS | grep '^Status:' | grep 'not-installed' --quiet + cat $STATUS | grep '^Status:' | grep ' installed' --quiet if [ $? != 0 ]; then rm -f $STATUS > /dev/null - return 1 + return 0 else rm -f $STATUS > /dev/null - return 0 + return 1 fi }