From 09ca5be74f440e04c48d6d5114b4fcdd08695b8a Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Wed, 22 May 2013 13:25:12 -0700 Subject: [PATCH] command/build: Newline before results --- 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 620d3f0d8..f512c96c1 100644 --- a/command/build/command.go +++ b/command/build/command.go @@ -90,7 +90,7 @@ func (Command) Run(env packer.Environment, args []string) int { wg.Wait() // Output all the artifacts - env.Ui().Say("==> The build completed! The artifacts created were:") + env.Ui().Say("\n==> The build completed! The artifacts created were:") for name, artifact := range artifacts { env.Ui().Say("--> %s:", name) env.Ui().Say(artifact.String())