hugo

Unnamed repository; edit this file 'description' to name the repository.

git clone git://git.shimmy1996.com/hugo.git
commit 76c95f55a5d18290baa7f23667161d4af9fb9b53
parent 2c7f5b62f6c1fa1c7b3cf2c1f3a1663b18e75004
Author: Joe Mooring <joe.mooring@veriphor.com>
Date:   Fri, 14 May 2021 07:45:13 -0700

Display version when building site (#8533)

Closes #8531
Diffstat:
Mcommands/hugo.go | 2++
1 file changed, 2 insertions(+), 0 deletions(-)
diff --git 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)