command/build: properly prefix the build outputs

This commit is contained in:
Mitchell Hashimoto 2013-05-21 15:43:50 -07:00
parent 6a98134682
commit 9a3a3bad55
1 changed files with 1 additions and 1 deletions

View File

@ -82,7 +82,7 @@ func (Command) Run(env packer.Environment, args []string) int {
// Run the build in a goroutine
go func() {
defer wg.Done()
b.Run(env.Ui())
b.Run(buildUis[b.Name()])
}()
}