Browse code

VERBOSE is True if true, not 'yes'

fixes bug #1052901

Change-Id: I77b08cbc713cc62808c1ea17aa7f766a56783587

Eric Windisch authored on 2012/09/25 01:47:44
Showing 1 changed files
... ...
@@ -640,7 +640,7 @@ else
640 640
     # Set up output redirection without log files
641 641
     # Copy stdout to fd 3
642 642
     exec 3>&1
643
-    if [[ "$VERBOSE" != "yes" ]]; then
643
+    if [[ "$VERBOSE" != "True" ]]; then
644 644
         # Throw away stdout and stderr
645 645
         exec 1>/dev/null 2>&1
646 646
     fi