diff --git a/builder/qemu/step_convert_disk.go b/builder/qemu/step_convert_disk.go index 6044388d5..5017470fc 100644 --- a/builder/qemu/step_convert_disk.go +++ b/builder/qemu/step_convert_disk.go @@ -38,7 +38,6 @@ func (s *stepConvertDisk) Run(state multistep.StateBag) multistep.StepAction { } command = append(command, []string{ - "-f", config.Format, "-O", config.Format, sourcePath, targetPath, diff --git a/builder/qemu/step_copy_disk.go b/builder/qemu/step_copy_disk.go index 69383068d..e5d53fa56 100644 --- a/builder/qemu/step_copy_disk.go +++ b/builder/qemu/step_copy_disk.go @@ -22,7 +22,6 @@ func (s *stepCopyDisk) Run(state multistep.StateBag) multistep.StepAction { command := []string{ "convert", - "-f", config.Format, "-O", config.Format, isoPath, path,