From: Chris Koeritz Date: Sun, 3 Mar 2013 03:17:54 +0000 (-0500) Subject: nice, fixed a long-standing bug where command lines were not printed X-Git-Tag: 2.140.90~1079 X-Git-Url: https://feistymeow.org/gitweb/?a=commitdiff_plain;h=5caefd248674b4e0f927abfc7a28f2b298d90e9f;p=feisty_meow.git nice, fixed a long-standing bug where command lines were not printed in noisy mode. --- 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.