From 45566feb75e28c47df05d40d281e59315abc828d Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Fri, 14 Jun 2013 14:47:28 -0700 Subject: [PATCH] command/build: Say we're in debug mode if we're in it --- command/build/command.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/command/build/command.go b/command/build/command.go index adc1fc42c..7e5d3da87 100644 --- a/command/build/command.go +++ b/command/build/command.go @@ -112,6 +112,10 @@ func (c Command) Run(env packer.Environment, args []string) int { builds = append(builds, build) } + if cfgDebug { + env.Ui().Say("Debug mode enabled. Builds will not be parallelized.") + } + // Compile all the UIs for the builds colors := [5]packer.UiColor{ packer.UiColorGreen,