From 9a3a3bad55f8c9497d14014d85cb6227fef244c9 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Tue, 21 May 2013 15:43:50 -0700 Subject: [PATCH] command/build: properly prefix the build outputs --- command/build/command.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/command/build/command.go b/command/build/command.go index 02874d325..32f845625 100644 --- a/command/build/command.go +++ b/command/build/command.go @@ -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()]) }() }