# File lib/r10k/util/subprocess/result.rb, line 24 def initialize(argv, stdout, stderr, exit_code) @argv = argv @cmd = argv.join(' ') @stdout = stdout.chomp @stderr = stderr.chomp @exit_code = exit_code end