This commit is contained in:
Josh Palay 2015-09-23 14:46:35 -07:00
parent 8944182d8e
commit e07aeebdd3
1 changed files with 1 additions and 1 deletions

View File

@ -63,7 +63,7 @@ func (c CommandRunner) Run(command *Command) ([]byte, error) {
cmd.Stdout = &out
if err := cmd.Run(); err != nil {
return nil, fmt.Errorf("exec: %s for command '%s'", err, command.command)
return nil, fmt.Errorf("exec: %s for command '%s'", err, command.Command)
}
return out.Bytes(), nil