rename hidden-help to help-verbose (#1180)

This commit is contained in:
Mathew Kamkar
2022-11-21 10:58:48 -08:00
committed by GitHub
parent aba18accd9
commit 11da6fc0ff
2 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -68,7 +68,7 @@ func printPorts(c *cli.Context) error {
return nil
}
func hiddenHelp(c *cli.Context) error {
func helpVerbose(c *cli.Context) error {
generatedFlags, err := config.GenerateCLIFlags(baseFlags, false)
if err != nil {
return err
+3 -3
View File
@@ -154,9 +154,9 @@ func main() {
Action: listNodes,
},
{
Name: "hidden-help",
Usage: "prints app help and includes all hidden generated configuration flags",
Action: hiddenHelp,
Name: "help-verbose",
Usage: "prints app help, including all generated configuration flags",
Action: helpVerbose,
},
},
Version: version.Version,