Method: R10K::Util::Subprocess::SubprocessError#message

Defined in:
lib/r10k/util/subprocess/subprocess_error.rb

#messageObject

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



18
19
20
21
22
23
# File 'lib/r10k/util/subprocess/subprocess_error.rb', line 18

def message
  msg = []
  msg << "#{super}:"
  msg << @result.format
  msg.join("\n")
end