Update vendor directory

This commit is contained in:
Nicholas Thompson
2021-04-23 22:14:34 +02:00
parent 321d19c5c2
commit e201779341
726 changed files with 124438 additions and 104379 deletions

View File

@@ -438,7 +438,7 @@ func (c *Command) match(name string) bool {
return false
}
func (c *Command) hasCliOptions() bool {
func (c *Command) hasHelpOptions() bool {
ret := false
c.eachGroup(func(g *Group) {
@@ -447,7 +447,7 @@ func (c *Command) hasCliOptions() bool {
}
for _, opt := range g.options {
if opt.canCli() {
if opt.showInHelp() {
ret = true
}
}