From 113e28cb29769df14ff28086a296bfc8e4a58cc4 Mon Sep 17 00:00:00 2001 From: Felix Stupp Date: Sat, 1 Dec 2018 13:54:49 +0100 Subject: [PATCH] update.sh: Fixed checkout hiding message --- update.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/update.sh b/update.sh index 7cfb8cc..df428bf 100755 --- a/update.sh +++ b/update.sh @@ -12,7 +12,7 @@ CONF_SCRIPT="configure.sh"; git pull --tags > /dev/null; TAG=$(git tag --list | grep "^$PREFIX-" | sort -r | head -n 1); if git verify-tag --raw "$TAG" 2>&1 | grep "TRUST_ULTIMATE" > /dev/null; then - git checkout "$TAG" > /dev/null; + git checkout -q "$TAG"; if [ -f "$CONF_SCRIPT" ]; then ./$CONF_SCRIPT; fi