From 0de0ed94e1ece9dd791871b69a2ed9ca4aacbf89 Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Tue, 2 Aug 2016 11:42:35 +0200 Subject: [PATCH] Do not print logging info with color in test scripts --- tests/utils.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/utils.sh b/tests/utils.sh index e0153bdd..64999bb8 100644 --- a/tests/utils.sh +++ b/tests/utils.sh @@ -37,7 +37,7 @@ imag-call-binary() { local binary=$1; shift [[ -d $searchdir ]] || { err "FATAL: No directory $searchdir"; exit 1; } local bin=$(find $searchdir -iname $binary -type f -executable) - local flags="--config ./imagrc.toml --override-config store.implicit-create=true --debug --rtp $RUNTIME" + local flags="--no-color --config ./imagrc.toml --override-config store.implicit-create=true --debug --rtp $RUNTIME" out "Calling '$bin $flags $*'" $bin $flags $* }