From b8eecafd888d219633f4c29e8b6a90fc21a46dfd Mon Sep 17 00:00:00 2001 From: Miklos Vajna Date: Fri, 10 Oct 2008 00:07:10 +0200 Subject: [PATCH] test-lib: fix color reset in say_color() When executing a single test with colors enabled, the cursor was not set back to the previous one, and you had to hit an extra enter to get it back. Work around this problem by calling 'tput sgr0' before printing the final newline. Signed-off-by: Miklos Vajna Signed-off-by: Shawn O. Pearce --- t/test-lib.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/t/test-lib.sh b/t/test-lib.sh index 11c027571b..35698361ba 100644 --- a/t/test-lib.sh +++ b/t/test-lib.sh @@ -112,8 +112,9 @@ if test -n "$color"; then *) test -n "$quiet" && return;; esac shift - echo "* $*" + printf "* $*" tput sgr0 + echo ) } else -- 2.11.4.GIT