diff --git a/hugolib/hugo.go b/hugolib/hugo.go index 24b09b2ee..3e4d02039 100644 --- a/hugolib/hugo.go +++ b/hugolib/hugo.go @@ -7,6 +7,8 @@ var ( BuildDate string ) +var hugoInfo *HugoInfo + // HugoInfo contains information about the current Hugo environment type HugoInfo struct { Version string @@ -15,11 +17,14 @@ type HugoInfo struct { BuildDate string } -func newHugoInfo() *HugoInfo { - return &HugoInfo{ - Version: Version, - CommitHash: CommitHash, - BuildDate: BuildDate, - Generator: ``, +func getHugoInfo() *HugoInfo { + if hugoInfo == nil { + hugoInfo = &HugoInfo{ + Version: Version, + CommitHash: CommitHash, + BuildDate: BuildDate, + Generator: ``, + } } + return hugoInfo } diff --git a/hugolib/node.go b/hugolib/node.go index 8619b7c89..85cf6aeb6 100644 --- a/hugolib/node.go +++ b/hugolib/node.go @@ -29,7 +29,6 @@ type Node struct { Params map[string]interface{} Date time.Time Sitemap Sitemap - hugo *HugoInfo UrlPath } @@ -79,10 +78,7 @@ func (n *Node) IsMenuCurrent(menuId string, inme *MenuEntry) bool { } func (n *Node) Hugo() *HugoInfo { - if n.hugo == nil { - n.hugo = newHugoInfo() - } - return n.hugo + return getHugoInfo() } func (n *Node) isSameAsDescendantMenu(inme *MenuEntry, parent *MenuEntry) bool {