Commit cf6532ff authored by JessThrysoee's avatar JessThrysoee

builder/parallels: Ignore 'The fdd0 device does not exist'

A current floppy disk probably doesn't exist, so the build shouldn't
fail when we try to delete it.
parent 5e4ffb56
...@@ -39,11 +39,10 @@ func (s *StepAttachFloppy) Run(state multistep.StateBag) multistep.StepAction { ...@@ -39,11 +39,10 @@ func (s *StepAttachFloppy) Run(state multistep.StateBag) multistep.StepAction {
"set", vmName, "set", vmName,
"--device-del", "fdd0", "--device-del", "fdd0",
} }
if err := driver.Prlctl(del_command...); err != nil { // This will almost certainly fail with 'The fdd0 device does not exist.'
state.Put("error", fmt.Errorf("Error deleting floppy: %s", err)) driver.Prlctl(del_command...)
}
ui.Say("Attaching floppy disk...")
ui.Say("Attaching floppy disk...")
// Attaching the floppy disk // Attaching the floppy disk
add_command := []string{ add_command := []string{
"set", vmName, "set", vmName,
......
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