You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Restores the behavior where `--help` would always skip the command to be invoked, while still allowing to pass the `--help` to external subcommands:
The following commands print the help message and exit:
- `shards --help`
- `shards --local --help`
- `shards update --help`
While the following tries to call `shards-unknown --help` then falls back to print the help message and exit:
- `shards unknown --help`
Relies on a fixed list of the builtin command names to avoid having each `when` case starting with `display_help_and_exit(opts) if display_help`.
0 commit comments