From 76c95f55a5d18290baa7f23667161d4af9fb9b53 Mon Sep 17 00:00:00 2001 From: Joe Mooring Date: Fri, 14 May 2021 07:45:13 -0700 Subject: [PATCH] Display version when building site (#8533) Closes #8531 --- commands/hugo.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/commands/hugo.go b/commands/hugo.go index b850f7e6..fddbe2b7 100644 --- a/commands/hugo.go +++ b/commands/hugo.go @@ -37,6 +37,7 @@ import ( "github.com/pkg/errors" "github.com/gohugoio/hugo/common/herrors" + "github.com/gohugoio/hugo/common/hugo" "github.com/gohugoio/hugo/common/loggers" "github.com/gohugoio/hugo/common/terminal" @@ -283,6 +284,7 @@ func (c *commandeer) fullBuild() error { if !c.h.quiet { fmt.Println("Start building sites … ") + fmt.Println(hugo.BuildVersionString()) if isTerminal() { defer func() { fmt.Print(showCursor + clearLine)