From 1585f3fef1c11b30887eebdfa4edf15f8a8d62bc Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Thu, 27 Jun 2013 17:21:15 -0400 Subject: [PATCH] post-processor/vagrant: virtualbox box provider should be "virtualbox" --- post-processor/vagrant/virtualbox.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/post-processor/vagrant/virtualbox.go b/post-processor/vagrant/virtualbox.go index ad5f30081..08b454243 100644 --- a/post-processor/vagrant/virtualbox.go +++ b/post-processor/vagrant/virtualbox.go @@ -38,7 +38,7 @@ func (p *VBoxBoxPostProcessor) PostProcess(ui packer.Ui, artifact packer.Artifac tplData := &VBoxVagrantfileTemplate{} // Compile the output path - outputPath, err := ProcessOutputPath(p.config.OutputPath, "aws", artifact) + outputPath, err := ProcessOutputPath(p.config.OutputPath, "virtualbox", artifact) if err != nil { return nil, err }