summaryrefslogtreecommitdiffstats
path: root/commands/version.go
diff options
context:
space:
mode:
authorCameron Moore <moorereason@gmail.com>2017-01-04 14:13:15 -0600
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2017-01-06 11:54:53 +0100
commit3286b24fce03b8302c17939cbbabcb0e0e9b0eb7 (patch)
tree05f39441e8bc9ee8899043d0e10d5bd85815911a /commands/version.go
parent2989c38245628e1ed0062f1a345da0693f4f294d (diff)
commands: Show OS and ARCH in version output
Diffstat (limited to 'commands/version.go')
-rw-r--r--commands/version.go5
1 files changed, 3 insertions, 2 deletions
diff --git a/commands/version.go b/commands/version.go
index 348464227..f026c13a5 100644
--- a/commands/version.go
+++ b/commands/version.go
@@ -16,6 +16,7 @@ package commands
import (
"os"
"path/filepath"
+ "runtime"
"strings"
"time"
@@ -43,9 +44,9 @@ func printHugoVersion() {
formatBuildDate() // format the compile time
}
if hugolib.CommitHash == "" {
- jww.FEEDBACK.Printf("Hugo Static Site Generator v%s BuildDate: %s\n", helpers.HugoVersion(), hugolib.BuildDate)
+ jww.FEEDBACK.Printf("Hugo Static Site Generator v%s %s/%s BuildDate: %s\n", helpers.HugoVersion(), runtime.GOOS, runtime.GOARCH, hugolib.BuildDate)
} else {
- jww.FEEDBACK.Printf("Hugo Static Site Generator v%s-%s BuildDate: %s\n", helpers.HugoVersion(), strings.ToUpper(hugolib.CommitHash), hugolib.BuildDate)
+ jww.FEEDBACK.Printf("Hugo Static Site Generator v%s-%s %s/%s BuildDate: %s\n", helpers.HugoVersion(), strings.ToUpper(hugolib.CommitHash), runtime.GOOS, runtime.GOARCH, hugolib.BuildDate)
}
}