docs: CLI flag docs and rewording of usage

This commit is contained in:
decentral1se 2021-07-30 22:54:30 +02:00
parent 769c5b899b
commit e728bcd7ac
No known key found for this signature in database
GPG Key ID: 5E2EF5A63E3718CC
1 changed files with 3 additions and 1 deletions

View File

@ -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,
}