From aaad5743109756caf554d491026b1817a61329a8 Mon Sep 17 00:00:00 2001 From: Felix Stupp Date: Sat, 1 Dec 2018 13:46:05 +0100 Subject: [PATCH] update.sh: Fixed validation of tag verification --- update.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/update.sh b/update.sh index 988437c..4645726 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 "$TAG" 2>/dev/null | grep "TRUST_ULTIMATE" > /dev/null; then +if git verify-tag --raw "$TAG" 2>/dev/null | grep "TRUST_ULTIMATE" > /dev/null; then git checkout "$TAG"; ./configure.sh; else