From: Anthony Fok Date: Thu, 26 Apr 2018 12:35:04 +0000 (-0600) Subject: commands: Do not show empty BuildDate in version X-Git-Tag: v0.41~37 X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=4eedb377b60fb6742c97398942a0045ff2a824c4;p=brevno-suite%2Fhugo commands: Do not show empty BuildDate in version --- 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) }