builder/virtualbox/ovf: re-order some steps

This commit is contained in:
Mitchell Hashimoto 2013-12-22 15:20:49 -08:00
parent dd767c9d54
commit 5b223f0798
1 changed files with 3 additions and 3 deletions

View File

@ -39,9 +39,6 @@ func (b *Builder) Run(ui packer.Ui, hook packer.Hook, cache packer.Cache) (packe
// Build the steps. // Build the steps.
steps := []multistep.Step{ steps := []multistep.Step{
&StepImport{
SourcePath: b.config.SourcePath,
},
&vboxcommon.StepOutputDir{ &vboxcommon.StepOutputDir{
Force: b.config.PackerForce, Force: b.config.PackerForce,
Path: b.config.OutputDir, Path: b.config.OutputDir,
@ -50,6 +47,9 @@ func (b *Builder) Run(ui packer.Ui, hook packer.Hook, cache packer.Cache) (packe
&common.StepCreateFloppy{ &common.StepCreateFloppy{
Files: b.config.FloppyFiles, Files: b.config.FloppyFiles,
}, },
&StepImport{
SourcePath: b.config.SourcePath,
},
/* /*
new(stepAttachGuestAdditions), new(stepAttachGuestAdditions),
*/ */