diff options
Diffstat (limited to 'handlers_meta.go')
| -rw-r--r-- | handlers_meta.go | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/handlers_meta.go b/handlers_meta.go index 1c20add..52be710 100644 --- a/handlers_meta.go +++ b/handlers_meta.go @@ -10,7 +10,9 @@ import ( ) func printVersion(ctx cli.Context) { - fmt.Printf("%s v%s, %s\n", Name, Version, runtime.Version()) + fmt.Printf("%s: %s\n", Name, Version) + fmt.Printf("Golang: %s\n", runtime.Version()) + fmt.Printf("OS/Arch: %s/%s\n", runtime.GOOS, runtime.GOARCH) } func printHelp(ctx cli.Context) { |
