From 5caefd248674b4e0f927abfc7a28f2b298d90e9f Mon Sep 17 00:00:00 2001 From: Chris Koeritz Date: Sat, 2 Mar 2013 22:17:54 -0500 Subject: [PATCH] nice, fixed a long-standing bug where command lines were not printed in noisy mode. --- scripts/clam/badness_catcher.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/scripts/clam/badness_catcher.sh b/scripts/clam/badness_catcher.sh index e9b19f29..f25746f1 100755 --- a/scripts/clam/badness_catcher.sh +++ b/scripts/clam/badness_catcher.sh @@ -1,7 +1,9 @@ #!/bin/bash # badness_catcher: runs the command line passed in and catches error conditions. -#echo args are: $* +if [ ! -z "$NOISY" ]; then + echo $* +fi eval "$@" # get exit status. -- 2.34.1