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
commit 2a7c84e9ff
2 changed files with 0 additions and 2 deletions

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,

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,