Method: ProcessExecuter::Result#stderr
- Defined in:
- lib/process_executer/result.rb
#stderr ⇒ String?
Return the captured stderr output
This output is only returned if the :err option value is a
ProcessExecuter::MonitoredPipe.
143 144 145 146 147 148 |
# File 'lib/process_executer/result.rb', line 143 def stderr pipe = .stderr_redirection_value return nil unless pipe.is_a?(ProcessExecuter::MonitoredPipe) pipe.destination.string end |