Merge pull request #4343 from vtolstov/qemu_convert

builder/qemu: allow to convert from any supported format
pull/4110/head^2
Matthew Hooker 9 years ago committed by GitHub
commit 2a7c84e9ff

@ -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,

@ -22,7 +22,6 @@ func (s *stepCopyDisk) Run(state multistep.StateBag) multistep.StepAction {
command := []string{
"convert",
"-f", config.Format,
"-O", config.Format,
isoPath,
path,

Loading…
Cancel
Save