post-procssor/vagrant: return proper artifact

This commit is contained in:
Mitchell Hashimoto 2013-12-20 09:52:50 -08:00
parent edbdee5dee
commit 9b579a9dd7
1 changed files with 1 additions and 1 deletions

View File

@ -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 {