commit | efdf3ffc9fafe24feb885399807e2bad29b60caa | [log] [tgz] |
---|---|---|
author | Eric Windisch <eric@cloudscaling.com> | Mon Sep 24 12:47:44 2012 -0400 |
committer | Eric Windisch <eric@cloudscaling.com> | Mon Sep 24 12:52:21 2012 -0400 |
tree | fa3ee145e5e0eda769255b8c7f2255b80e262970 | |
parent | 9dce274dac1a68074b61bfe392b3c55e186bb7dd [diff] [blame] |
VERBOSE is True if true, not 'yes' fixes bug #1052901 Change-Id: I77b08cbc713cc62808c1ea17aa7f766a56783587
diff --git a/stack.sh b/stack.sh index 545c071..36c4b9b 100755 --- a/stack.sh +++ b/stack.sh
@@ -640,7 +640,7 @@ # Set up output redirection without log files # Copy stdout to fd 3 exec 3>&1 - if [[ "$VERBOSE" != "yes" ]]; then + if [[ "$VERBOSE" != "True" ]]; then # Throw away stdout and stderr exec 1>/dev/null 2>&1 fi