summaryrefslogtreecommitdiff
path: root/lib/mixlib/shellout.rb
diff options
context:
space:
mode:
authorAkshay Karle <akshay.a.karle@gmail.com>2013-09-26 15:06:27 +0530
committerAkshay Karle <akshay.a.karle@gmail.com>2013-09-26 23:10:39 +0530
commitc0173e6b26dff8e8f99a779412eafccb1d2165d0 (patch)
treefbdf85bd08b6c0c5fb83a6789b7f1c9018bafef0 /lib/mixlib/shellout.rb
parente986fc3ea9d0a6f09c005e7240db60b4db2861a7 (diff)
downloadmixlib-shellout-c0173e6b26dff8e8f99a779412eafccb1d2165d0.tar.gz
Add stderr to live_stream.
Diffstat (limited to 'lib/mixlib/shellout.rb')
-rw-r--r--lib/mixlib/shellout.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/mixlib/shellout.rb b/lib/mixlib/shellout.rb
index a267162..d8e494a 100644
--- a/lib/mixlib/shellout.rb
+++ b/lib/mixlib/shellout.rb
@@ -53,9 +53,9 @@ module Mixlib
# the command was successful. Normally set via options to new
attr_accessor :valid_exit_codes
- # When live_stream is set, stdout of the subprocess will be copied to it as
- # the subprocess is running. For example, if live_stream is set to STDOUT,
- # the command's output will be echoed to STDOUT.
+ # When live_stream is set, stdout and stderr of the subprocess will be
+ # copied to it as the subprocess is running. For example, if live_stream is
+ # set to STDOUT, the command's output will be echoed to STDOUT.
attr_accessor :live_stream
# ShellOut will push data from :input down the stdin of the subprocss.