Update to builder interface change

This commit is contained in:
Calle Pettersson 2019-03-16 17:43:25 +01:00 committed by Megan Marsh
parent 65f38978f8
commit e9d5a1d272
1 changed files with 1 additions and 1 deletions

View File

@ -35,7 +35,7 @@ func (b *Builder) Prepare(raws ...interface{}) ([]string, error) {
return nil, nil
}
func (b *Builder) Run(ui packer.Ui, hook packer.Hook, cache packer.Cache) (packer.Artifact, error) {
func (b *Builder) Run(ui packer.Ui, hook packer.Hook) (packer.Artifact, error) {
var err error
tlsConfig := &tls.Config{
InsecureSkipVerify: b.config.SkipCertValidation,