Commit 6c802286 authored by Mitchell Hashimoto's avatar Mitchell Hashimoto

provisioner/shell: missing error arg

parent a235419c
...@@ -282,7 +282,8 @@ func (p *Provisioner) Provision(ui packer.Ui, comm packer.Communicator) error { ...@@ -282,7 +282,8 @@ func (p *Provisioner) Provision(ui packer.Ui, comm packer.Communicator) error {
cmd.Wait() cmd.Wait()
if cmd.ExitStatus != 0 { if cmd.ExitStatus != 0 {
return fmt.Errorf( return fmt.Errorf(
"Error removing temporary script at %s!") "Error removing temporary script at %s!",
p.config.RemotePath)
} }
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment