From 3e1cef81fc1e6232b677f4a3a60eeed08d78fa94 Mon Sep 17 00:00:00 2001 From: Felix Stupp Date: Sat, 1 Dec 2018 13:52:57 +0100 Subject: [PATCH] update.sh: Disable checkout message --- update.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/update.sh b/update.sh index b4fed0c..7cfb8cc 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"; + git checkout "$TAG" > /dev/null; if [ -f "$CONF_SCRIPT" ]; then ./$CONF_SCRIPT; fi