Actions
Bug #11863
open[Go] CLI programs should exit 0 after giving -help
Story points:
-
Release:
Release relationship:
Auto
Description
Currently "prog -help" relies on the "print usage and exit non-zero if given flag is undefined" behavior in the stdlib "flag" package.
To fix this, we can set ErrorHandling to ContinueOnError, and check the return value of Parse():- if flag.ErrHelp, os.Exit(0)
- if other non-nil error, os.Exit(2)
Updated by Tom Morris over 7 years ago
- Target version set to Arvados Future Sprints
Updated by Peter Amstutz over 3 years ago
- Target version deleted (
Arvados Future Sprints)
Actions