From d1858de7a00b093eb02cb4f75362800ecea0c464 Mon Sep 17 00:00:00 2001 From: Fabian-Lars Date: Tue, 26 Sep 2023 19:41:32 +0200 Subject: [PATCH] fix(cli): help output mixed up for private-key and private-key-path (#7901) --- tooling/cli/src/signer/sign.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tooling/cli/src/signer/sign.rs b/tooling/cli/src/signer/sign.rs index eaefa40aff15..66422b8aa89d 100644 --- a/tooling/cli/src/signer/sign.rs +++ b/tooling/cli/src/signer/sign.rs @@ -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, - /// 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, /// Set private key password when signing