File tree Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change
1
+ ---
2
+ " cli.rs " : patch
3
+ " cli.js " : patch
4
+ ---
5
+
6
+ Fixes a crash on the ` signer sign ` command.
Original file line number Diff line number Diff line change @@ -15,10 +15,10 @@ use clap::Parser;
15
15
#[ clap( about = "Sign a file" ) ]
16
16
pub struct Options {
17
17
/// Load the private key from a file
18
- #[ clap( short = 'k' , long, conflicts_with( "private_key_path " ) ) ]
18
+ #[ clap( short = 'k' , long, conflicts_with( "private-key-path " ) ) ]
19
19
private_key : Option < String > ,
20
20
/// Load the private key from a string
21
- #[ clap( short = 'f' , long, conflicts_with( "private_key " ) ) ]
21
+ #[ clap( short = 'f' , long, conflicts_with( "private-key " ) ) ]
22
22
private_key_path : Option < PathBuf > ,
23
23
/// Set private key password when signing
24
24
#[ clap( short, long) ]
You can’t perform that action at this time.
0 commit comments