Commit b77042dc authored by Mitchell Hashimoto's avatar Mitchell Hashimoto

provisioner/shell-local: fix vet

parent 0416939c
...@@ -96,7 +96,7 @@ func (p *Provisioner) Provision(ui packer.Ui, _ packer.Communicator) error { ...@@ -96,7 +96,7 @@ func (p *Provisioner) Provision(ui packer.Ui, _ packer.Communicator) error {
} }
if cmd.ExitStatus != 0 { if cmd.ExitStatus != 0 {
return fmt.Errorf( return fmt.Errorf(
"Erroneous exit code %s while executing command: %s\n\n"+ "Erroneous exit code %d while executing command: %s\n\n"+
"Please see output above for more information.", "Please see output above for more information.",
cmd.ExitStatus, cmd.ExitStatus,
p.config.Command) p.config.Command)
......
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