Merge pull request #3902 from mitchellh/3901-fix

QemuArggs -> QemuArgs
This commit is contained in:
Rickard von Essen 2016-09-19 23:39:26 +02:00 committed by GitHub
commit ad982faefe
1 changed files with 1 additions and 1 deletions

View File

@ -35,7 +35,7 @@ func (s *stepRun) Run(state multistep.StateBag) multistep.StepAction {
command, err := getCommandArgs(s.BootDrive, state) command, err := getCommandArgs(s.BootDrive, state)
if err != nil { if err != nil {
err := fmt.Errorf("Error processing QemuArggs: %s", err) err := fmt.Errorf("Error processing QemuArgs: %s", err)
ui.Error(err.Error()) ui.Error(err.Error())
return multistep.ActionHalt return multistep.ActionHalt
} }