diff options
| -rw-r--r-- | handlers_meta.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/handlers_meta.go b/handlers_meta.go index eebdbce..1c20add 100644 --- a/handlers_meta.go +++ b/handlers_meta.go @@ -4,12 +4,13 @@ import ( "os" "fmt" "strings" + "runtime" "text/tabwriter" "./cli" ) func printVersion(ctx cli.Context) { - fmt.Printf("%s v%s\n", Name, Version) + fmt.Printf("%s v%s, %s\n", Name, Version, runtime.Version()) } func printHelp(ctx cli.Context) { |
