From 9b579a9dd76b2282accb8f0cda48da29cc5e322c Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Fri, 20 Dec 2013 09:52:50 -0800 Subject: [PATCH] post-procssor/vagrant: return proper artifact --- post-processor/vagrant/post-processor.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/post-processor/vagrant/post-processor.go b/post-processor/vagrant/post-processor.go index 2329eba3c..78659488c 100644 --- a/post-processor/vagrant/post-processor.go +++ b/post-processor/vagrant/post-processor.go @@ -152,7 +152,7 @@ func (p *PostProcessor) PostProcess(ui packer.Ui, artifact packer.Artifact) (pac return nil, false, err } - return nil, false, nil + return NewArtifact(name, outputPath), false, nil } func (p *PostProcessor) configureSingle(config *Config, raws ...interface{}) error {