mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-07 20:30:36 -05:00
parent
794589fbfd
commit
588256776e
1 changed files with 4 additions and 1 deletions
|
@ -257,7 +257,10 @@ func (t *GoHTMLTemplate) AddTemplateFileWithMaster(name, overlayFilename, master
|
|||
if err != nil {
|
||||
t.errors = append(t.errors, &templateErr{name: name, err: err})
|
||||
} else {
|
||||
t.overlays[name] = overlayTpl
|
||||
// The extra lookup is a workaround, see
|
||||
// * https://github.com/golang/go/issues/16101
|
||||
// * https://github.com/spf13/hugo/issues/2549
|
||||
t.overlays[name] = overlayTpl.Lookup(overlayTpl.Name())
|
||||
}
|
||||
|
||||
return err
|
||||
|
|
Loading…
Reference in a new issue