Merge pull request #4343 from vtolstov/qemu_convert

builder/qemu: allow to convert from any supported format
This commit is contained in:
Matthew Hooker
2017-01-24 01:12:31 -08:00
committed by GitHub
2 changed files with 0 additions and 2 deletions
-1
View File
@@ -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,
-1
View File
@@ -22,7 +22,6 @@ func (s *stepCopyDisk) Run(state multistep.StateBag) multistep.StepAction {
command := []string{
"convert",
"-f", config.Format,
"-O", config.Format,
isoPath,
path,