commands: Do not show empty BuildDate in version
authorAnthony Fok <foka@debian.org>
Thu, 26 Apr 2018 12:35:04 +0000 (06:35 -0600)
committerAnthony Fok <foka@debian.org>
Mon, 14 May 2018 06:08:12 +0000 (00:08 -0600)
commands/version.go

index 71ffd625b0920affb4e152dde6f96b0bd0cbb058..dfa79bb69657c367a013e3aa84f5d5adbad74bc8 100644 (file)
@@ -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)
        }