Skip to content

Commit

Permalink
fix(cli): help output mixed up for private-key and private-key-path (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
FabianLars authored Sep 26, 2023
1 parent 9aa34ad commit d1858de
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tooling/cli/src/signer/sign.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ use tauri_utils::display_path;
#[derive(Debug, Parser)]
#[clap(about = "Sign a file")]
pub struct Options {
/// Load the private key from a file
/// Load the private key from a string
#[clap(short = 'k', long, conflicts_with("private_key_path"))]
private_key: Option<String>,
/// Load the private key from a string
/// Load the private key from a file
#[clap(short = 'f', long, conflicts_with("private_key"))]
private_key_path: Option<PathBuf>,
/// Set private key password when signing
Expand Down

0 comments on commit d1858de

Please sign in to comment.