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
Truthful help and exit codes; grouped global flags; examples
- Required flags are now clap-enforced and shown in usage lines:
endpoint create (--chain/--network), endpoint update (--label), and
the six stream create flags via required_unless_present(config_file).
Missing-flag errors now list everything missing at once instead of
failing one runtime check at a time.
- clap usage errors (typo'd subcommand, missing required flag) exit 1,
matching runtime argument errors, so exit 2 always and only means
"the API returned an error". --help/--version still exit 0.
- Global flags are grouped under a "Global options" heading in every
subcommand's --help, so command-specific flags surface first.
- after_help examples on the top level and on endpoint/stream/webhook/
kv/auth.
- README exit-code table updated.
0 commit comments