Method: Yast::HooksClass::HookFile#output
- Defined in:
- library/general/src/modules/Hooks.rb
#output ⇒ Object
222 223 224 225 226 227 228 229 |
# File 'library/general/src/modules/Hooks.rb', line 222 def output return "" unless result output = [] output << "STDERR: #{result.stderr.strip}" unless result.stderr.empty? output << "STDOUT: #{result.stdout.strip}" unless result.stdout.empty? output.join("; ") end |