QemuArggs -> QemuArgs

Avast ye, resolves #3901
This commit is contained in:
Matthew Hooker 2016-09-19 14:34:10 -07:00
parent b97e5219da
commit 7cbb98f2d5
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)
if err != nil {
err := fmt.Errorf("Error processing QemuArggs: %s", err)
err := fmt.Errorf("Error processing QemuArgs: %s", err)
ui.Error(err.Error())
return multistep.ActionHalt
}