From 7e09d3b3e63e2337b7730ff6a38d1322ce063a8f Mon Sep 17 00:00:00 2001 From: Ryan Cavicchioni Date: Sun, 10 Jan 2021 21:00:41 -0600 Subject: [PATCH] Fix help usage --- cmd/lume/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/lume/main.go b/cmd/lume/main.go index ec86572..32b0d90 100644 --- a/cmd/lume/main.go +++ b/cmd/lume/main.go @@ -48,7 +48,7 @@ func main() { cmd, ok := lumecmd.GetCommand(command) if !ok { - fmt.Printf("lume: '%s' is not lume command. See 'lume' --help.'\n", command) + fmt.Printf("lume: '%s' is not lume command. See 'lume help'\n", command) os.Exit(1) } fs := cmd.Flags