From d6eb46cf1116d147121f6b6db9d390b5e2fb238d Mon Sep 17 00:00:00 2001 From: Jason Tsai Date: Mon, 2 Oct 2023 22:30:39 +0800 Subject: [PATCH] fix(macos): fix notraytool's apple-id option name, close #7917 (#7934) Co-authored-by: Lucas Fernandes Nogueira --- .changes/fix-notarytool-args-apple-id.md | 6 ++++++ tooling/bundler/src/bundle/macos/sign.rs | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) create mode 100644 .changes/fix-notarytool-args-apple-id.md diff --git a/.changes/fix-notarytool-args-apple-id.md b/.changes/fix-notarytool-args-apple-id.md new file mode 100644 index 000000000000..b0e6b02d99c9 --- /dev/null +++ b/.changes/fix-notarytool-args-apple-id.md @@ -0,0 +1,6 @@ +--- +'tauri-cli': 'patch:bug' +'@tauri-apps/cli': 'patch:bug' +--- + +On macOS, fix the `apple-id` option name when using `notarytools submit`. \ No newline at end of file diff --git a/tooling/bundler/src/bundle/macos/sign.rs b/tooling/bundler/src/bundle/macos/sign.rs index b2ab2f79d2ee..a08866ed94e8 100644 --- a/tooling/bundler/src/bundle/macos/sign.rs +++ b/tooling/bundler/src/bundle/macos/sign.rs @@ -358,7 +358,7 @@ impl NotarytoolCmdExt for Command { team_id, } => { self - .arg("--username") + .arg("--apple-id") .arg(apple_id) .arg("--password") .arg(password);