mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-07 20:30:36 -05:00
resources: Add data context to the key in ExecuteAsTemplate
Fixes #7046
This commit is contained in:
parent
df298558a5
commit
18cb21ff2e
1 changed files with 1 additions and 1 deletions
|
@ -48,7 +48,7 @@ type executeAsTemplateTransform struct {
|
|||
}
|
||||
|
||||
func (t *executeAsTemplateTransform) Key() internal.ResourceTransformationKey {
|
||||
return internal.NewResourceTransformationKey("execute-as-template", t.targetPath)
|
||||
return internal.NewResourceTransformationKey("execute-as-template", t.targetPath, t.data)
|
||||
}
|
||||
|
||||
func (t *executeAsTemplateTransform) Transform(ctx *resources.ResourceTransformationCtx) error {
|
||||
|
|
Loading…
Reference in a new issue