From 6464981adb4d7d0f41e8e2c987342082982210a1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B8rn=20Erik=20Pedersen?= Date: Sun, 10 Jun 2018 20:53:28 +0200 Subject: [PATCH] hugolib: Make sure that .Site.Taxonomies is always set on rebuilds Fixes #4838 --- hugolib/site.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/hugolib/site.go b/hugolib/site.go index 273d61901..04a18bb48 100644 --- a/hugolib/site.go +++ b/hugolib/site.go @@ -1153,6 +1153,8 @@ func (s *Site) initializeSiteInfo() error { owner: s.owner, s: s, Config: siteConfig, + // TODO(bep) make this Menu and similar into delegate methods on SiteInfo + Taxonomies: s.Taxonomies, } rssOutputFormat, found := s.outputFormats[KindHome].GetByName(output.RSSFormat.Name)