From c3ed524435c792523deeb78f3a6936b7ded0393e Mon Sep 17 00:00:00 2001 From: markus schnalke Date: Fri, 28 Nov 2014 11:46:33 +0100 Subject: [PATCH] tests: Supress progress meter if non-interactive. --- test/common.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/common.sh b/test/common.sh index 7f09867..0fd3afb 100644 --- a/test/common.sh +++ b/test/common.sh @@ -37,6 +37,7 @@ require_prog() # Some stuff for doing silly progress indicators progress_update() { + test -t 1 || return 0 # supress progress meter if non-interactive THIS="$1" FIRST="$2" LAST="$3" @@ -50,5 +51,6 @@ progress_update() progress_done() { + test -t 1 || return 0 # supress progress meter if non-interactive printf "100%%\n" } -- 1.7.10.4