aboutsummaryrefslogtreecommitdiff
path: root/cmd/fscrypt/flags.go
diff options
context:
space:
mode:
authorJoseph Richey <joerichey@google.com>2020-03-23 14:24:48 -0700
committerGitHub <noreply@github.com>2020-03-23 14:24:48 -0700
commitf10aadb2675b26d351365c6c208c930b6d4c619c (patch)
tree5a86d205de0e3ed6299942b21c1518a394f6b8d7 /cmd/fscrypt/flags.go
parentab531eea551598170e4dd973fa5955f01b5c0318 (diff)
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 <joerichey@google.com>
Diffstat (limited to 'cmd/fscrypt/flags.go')
-rw-r--r--cmd/fscrypt/flags.go2
1 files changed, 1 insertions, 1 deletions
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",