command/build: Say we're in debug mode if we're in it

This commit is contained in:
Mitchell Hashimoto 2013-06-14 14:47:28 -07:00
parent bd843cfc16
commit 45566feb75
1 changed files with 4 additions and 0 deletions

View File

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