From 4eedb377b60fb6742c97398942a0045ff2a824c4 Mon Sep 17 00:00:00 2001 From: Anthony Fok Date: Thu, 26 Apr 2018 06:35:04 -0600 Subject: [PATCH] commands: Do not show empty BuildDate in version --- commands/version.go | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/commands/version.go b/commands/version.go index 71ffd625..dfa79bb6 100644 --- a/commands/version.go +++ b/commands/version.go @@ -45,7 +45,11 @@ func newVersionCmd() *versionCmd { func printHugoVersion() { if hugolib.CommitHash == "" { - jww.FEEDBACK.Printf("Hugo Static Site Generator v%s %s/%s BuildDate: %s\n", helpers.CurrentHugoVersion, runtime.GOOS, runtime.GOARCH, hugolib.BuildDate) + if hugolib.BuildDate == "" { + jww.FEEDBACK.Printf("Hugo Static Site Generator v%s %s/%s\n", helpers.CurrentHugoVersion, runtime.GOOS, runtime.GOARCH) + } else { + jww.FEEDBACK.Printf("Hugo Static Site Generator v%s %s/%s BuildDate: %s\n", helpers.CurrentHugoVersion, runtime.GOOS, runtime.GOARCH, hugolib.BuildDate) + } } else { jww.FEEDBACK.Printf("Hugo Static Site Generator v%s-%s %s/%s BuildDate: %s\n", helpers.CurrentHugoVersion, strings.ToUpper(hugolib.CommitHash), runtime.GOOS, runtime.GOARCH, hugolib.BuildDate) } -- 2.30.2