The Prince CLI exits with a bogus 0 return code even on CLI option parsing errors:
$ prince --unknown
prince: error: unrecognized option `--unknown'
prince: error: Try 'prince --help' for more information.
$ echo $?
0
In this case it really should exit with a return code != 0, please. Thanks.
$ prince --unknown
prince: error: unrecognized option `--unknown'
prince: error: Try 'prince --help' for more information.
$ echo $?
0
In this case it really should exit with a return code != 0, please. Thanks.