Commit 45566feb authored by Mitchell Hashimoto's avatar Mitchell Hashimoto

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

parent bd843cfc
......@@ -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,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment