This commit is contained in:
Adrien Delorme 2020-03-13 18:07:55 +01:00
parent 6e6490d688
commit 6f2f17c400
1 changed files with 1 additions and 1 deletions

View File

@ -259,7 +259,7 @@ func (b *Builder) Prepare(raws ...interface{}) ([]string, []string, error) {
var errs *packer.MultiError
var warns []string
errs = packer.MultiErrorAppend(errs, b.RootVolumeTag.CopyOn(b.RootVolumeTags)...)
errs = packer.MultiErrorAppend(errs, b.config.RootVolumeTag.CopyOn(b.config.RootVolumeTags)...)
for _, preparer := range []interface{ Prepare() []error }{
&b.config.SourceAmiFilter,