File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
7
7
8
8
## [ Unreleased]
9
9
10
+ - fix cli error with --help/version
10
11
- Don't cast fields with width 17-31 and non-zero offset.
11
12
12
13
## [ v0.27.0] - 2022-10-24
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ fn parse_configs(app: Command) -> Result<Config> {
18
18
use irx_config:: parsers:: { cmd, toml} ;
19
19
use irx_config:: ConfigBuilder ;
20
20
let irxconfig = ConfigBuilder :: default ( )
21
- . append_parser ( cmd:: ParserBuilder :: new ( app) . build ( ) ?)
21
+ . append_parser ( cmd:: ParserBuilder :: new ( app) . exit_on_error ( true ) . build ( ) ?)
22
22
. append_parser (
23
23
toml:: ParserBuilder :: default ( )
24
24
. default_path ( "svd2rust.toml" )
You can’t perform that action at this time.
0 commit comments