From f10aadb2675b26d351365c6c208c930b6d4c619c Mon Sep 17 00:00:00 2001 From: Joseph Richey Date: Mon, 23 Mar 2020 14:24:48 -0700 Subject: cmd: Simplify "fscrypt --version" output (#207) There's no need to include the build time, author, and copyright info in the output of "fscrypt --version". This information is: - Overly complex (the current string is hard to parse) - Inaccurate (there are other authors than just me) - Unnecessary (the Apache 2 license is for Source Code) - Makes reproducible builds impossible The default version string is just fine. Signed-off-by: Joe Richey --- cmd/fscrypt/flags.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cmd/fscrypt/flags.go') diff --git a/cmd/fscrypt/flags.go b/cmd/fscrypt/flags.go index 9679a8d..cb2e0ac 100644 --- a/cmd/fscrypt/flags.go +++ b/cmd/fscrypt/flags.go @@ -129,7 +129,7 @@ var ( } versionFlag = &boolFlag{ Name: "version", - Usage: `Prints version and license information.`, + Usage: `Prints version information.`, } verboseFlag = &boolFlag{ Name: "verbose", -- cgit v1.2.3