From 7fc49be2106a1cc20ad2ecabc6a77d1f2e14438f Mon Sep 17 00:00:00 2001 From: Felix Stupp Date: Sat, 1 Dec 2018 13:48:41 +0100 Subject: [PATCH] update.sh: Fixed error message handling of gpg --- update.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/update.sh b/update.sh index 4645726..4556425 100755 --- a/update.sh +++ b/update.sh @@ -10,7 +10,7 @@ PREFIX=release; git pull --tags > /dev/null; TAG=$(git tag --list | grep "^$PREFIX-" | sort -r | head -n 1); -if git verify-tag --raw "$TAG" 2>/dev/null | grep "TRUST_ULTIMATE" > /dev/null; then +if git verify-tag --raw "$TAG" | grep "TRUST_ULTIMATE" > /dev/null; then git checkout "$TAG"; ./configure.sh; else