From: Bjørn Erik Pedersen Date: Fri, 14 Jul 2017 08:08:04 +0000 (+0200) Subject: hugolib: Make template panics into nice error messages X-Git-Tag: v0.26~47 X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=794ea21e9;p=brevno-suite%2Fhugo hugolib: Make template panics into nice error messages --- diff --git a/hugolib/site.go b/hugolib/site.go index 8aa1e087..6bbf9350 100644 --- a/hugolib/site.go +++ b/hugolib/site.go @@ -1967,6 +1967,9 @@ func (s *Site) renderAndWritePage(name string, dest string, p *PageOutput, layou } func (s *Site) renderForLayouts(name string, d interface{}, w io.Writer, layouts ...string) error { + defer func() { + recover() + }() templ := s.findFirstTemplate(layouts...) if templ == nil { return fmt.Errorf("[%s] Unable to locate layout for %q: %s\n", s.Language.Lang, name, layouts)