command/build: get command passing

pull/919/head
Mitchell Hashimoto 12 years ago
parent 5d45d9b728
commit 87e88dc847

@ -113,7 +113,8 @@ func (c Command) Run(env packer.Environment, args []string) int {
log.Printf("Preparing build: %s", b.Name())
b.SetDebug(cfgDebug)
b.SetForce(cfgForce)
err := b.Prepare(userVars)
// TODO(mitchellh): Handle warnings
_, err := b.Prepare(userVars)
if err != nil {
env.Ui().Error(err.Error())
return 1

Loading…
Cancel
Save