provisioner/chef: show command in output
This commit is contained in:
parent
14787fd4cc
commit
711dfc9d0a
|
@ -372,7 +372,10 @@ func (p *Provisioner) knifeExec(ui packer.Ui, comm packer.Communicator, node str
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
if cmd.ExitStatus != 0 {
|
if cmd.ExitStatus != 0 {
|
||||||
return fmt.Errorf("Non-zero exit status. See output above for more info.")
|
return fmt.Errorf(
|
||||||
|
"Non-zero exit status. See output above for more info.\n\n"+
|
||||||
|
"Command: %s",
|
||||||
|
cmdText)
|
||||||
}
|
}
|
||||||
|
|
||||||
return nil
|
return nil
|
||||||
|
|
Loading…
Reference in New Issue