Merge pull request #5184 from tsmolka/patch-1
builder/hyperv/iso: missing InterpolateContext
This commit is contained in:
commit
08ff7486c1
|
@ -92,7 +92,8 @@ type Config struct {
|
|||
// Prepare processes the build configuration parameters.
|
||||
func (b *Builder) Prepare(raws ...interface{}) ([]string, error) {
|
||||
err := config.Decode(&b.config, &config.DecodeOpts{
|
||||
Interpolate: true,
|
||||
Interpolate: true,
|
||||
InterpolateContext: &b.config.ctx,
|
||||
InterpolateFilter: &interpolate.RenderFilter{
|
||||
Exclude: []string{
|
||||
"boot_command",
|
||||
|
|
Loading…
Reference in New Issue