From e728bcd7aca7c56569dcbb4157d44365cfabca9e Mon Sep 17 00:00:00 2001 From: decentral1se Date: Fri, 30 Jul 2021 22:54:30 +0200 Subject: [PATCH] docs: CLI flag docs and rewording of usage --- cli/common.go | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/cli/common.go b/cli/common.go index 0aba45c5..cbdf068a 100644 --- a/cli/common.go +++ b/cli/common.go @@ -58,7 +58,7 @@ var PassFlag = &cli.BoolFlag{ Name: "pass", Aliases: []string{"P"}, Value: false, - Usage: "Store the generated secrets in a pass store", + Usage: "Store the generated secrets in a local pass store", Destination: &Pass, } @@ -100,7 +100,9 @@ var VolumesFlag = &cli.BoolFlag{ var All bool var AllFlag = &cli.BoolFlag{ Name: "all", + Aliases: []string{"A"}, Value: false, + Usage: "Generate all secrets", Destination: &All, }