jawher / mow.cli

A versatile library for building CLI applications in Go
MIT License
872 stars 55 forks source link

Skip validation in parents when help is requested for a command #119

Closed jawher closed 3 years ago

jawher commented 3 years ago

For example:

If the program is invoked with:

app command --help

Before the fix:

An incorrect usage error will be printed, with the help message of the app

After the fix:

The help message for the command will be printed.

Fixes #118