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;
1515#[ clap( about = "Sign a file" ) ]
1616pub struct Options {
1717 /// 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 " ) ) ]
1919 private_key : Option < String > ,
2020 /// 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 " ) ) ]
2222 private_key_path : Option < PathBuf > ,
2323 /// Set private key password when signing
2424 #[ clap( short, long) ]
You can’t perform that action at this time.
0 commit comments