remove errouneous double prep

This commit is contained in:
Matthew Hooker 2018-01-26 13:13:13 -08:00
parent 71acccc1ed
commit c6b43ce6e9
No known key found for this signature in database
GPG Key ID: 7B5F933D9CE8C6A1
1 changed files with 0 additions and 4 deletions

View File

@ -76,9 +76,5 @@ func NewConfig(raws ...interface{}) (*Config, error) {
errs = packer.MultiErrorAppend(errs, es...)
}
if es := c.Comm.Prepare(&c.ctx); len(es) > 0 {
errs = packer.MultiErrorAppend(errs, es...)
}
return c, nil
}