From 905033d9c3f850fb5b89d853414360768253d03e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mateusz=20Czapli=C5=84ski?= Date: Thu, 29 Oct 2020 21:33:31 +0100 Subject: display version with --help --- up.go | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/up.go b/up.go index e6bfb41..bab0758 100644 --- a/up.go +++ b/up.go @@ -72,7 +72,7 @@ const version = "0.3.2 (2018-12-04)" func init() { pflag.Usage = func() { - fmt.Fprintf(os.Stderr, `Usage: COMMAND | up [OPTIONS] + fmt.Fprint(os.Stderr, `Usage: COMMAND | up [OPTIONS] up is the Ultimate Plumber, a tool for writing Linux pipes in a terminal-based UI interactively, with instant live preview of command results. @@ -113,6 +113,10 @@ KEYS OPTIONS `) pflag.PrintDefaults() + fmt.Fprint(os.Stderr, ` +HOMEPAGE: https://github.com/akavel/up +VERSION: `+version+` +`) } pflag.ErrHelp = errors.New("") // TODO: or something else? } -- cgit v1.2.3