builder/docker: Update type of config stored in state bag

This commit is contained in:
nywilken 2019-12-17 17:48:01 -05:00
parent d10a702ce8
commit 0ba6b22fee
1 changed files with 1 additions and 1 deletions

View File

@ -77,7 +77,7 @@ func (b *Builder) Run(ctx context.Context, ui packer.Ui, hook packer.Hook) (pack
// Setup the state bag and initial state for the steps
state := new(multistep.BasicStateBag)
state.Put("config", b.config)
state.Put("config", &b.config)
state.Put("hook", hook)
state.Put("ui", ui)