Browse code

Merge "VERBOSE is True if true, not 'yes'"

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