Do not show value on boolean flags help.

This commit is contained in:
Mariano Cano 2019-08-01 13:13:50 -07:00
parent dc657565a7
commit 00ebee870b

View file

@ -226,7 +226,11 @@ func stringifyFlag(f cli.Flag) string {
usage := fv.FieldByName("Usage").String()
placeholder := placeholderString.FindString(usage)
if placeholder == "" {
placeholder = "<value>"
switch f.(type) {
case cli.BoolFlag, cli.BoolTFlag:
default:
placeholder = "<value>"
}
}
return cli.FlagNamePrefixer(fv.FieldByName("Name").String(), placeholder) + "\t" + usage
}