From 7f1843410ec543790e9c977402268dd55daa277d Mon Sep 17 00:00:00 2001 From: Dom Del Nano Date: Mon, 26 Aug 2024 20:33:58 +0000 Subject: [PATCH] Remove --bundle-id since it is not a flag for the notarytool submit command Signed-off-by: Dom Del Nano --- ci/cli_merge_sign.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ci/cli_merge_sign.sh b/ci/cli_merge_sign.sh index a12c53df64d..b9c0ec9933a 100755 --- a/ci/cli_merge_sign.sh +++ b/ci/cli_merge_sign.sh @@ -51,9 +51,9 @@ lipo -create -output cli_darwin_universal cli_darwin_arm64 cli_darwin_amd64 export APP_IDENTITY="Developer ID Application: Pixie Labs Inc. (${TEAM_ID})" codesign -f -v --timestamp --options runtime -s "${APP_IDENTITY}" cli_darwin_universal cli_darwin_arm64 cli_darwin_amd64 -xcrun notarytool submit cli_darwin_universal --apple-id "${APPLE_ID}" --password "${AC_PASSWD}" --team-id "${TEAM_ID}" --bundle-id ai.pixielabs.px --progress --verbose --wait -xcrun notarytool submit cli_darwin_amd64 --apple-id "${APPLE_ID}" --password "${AC_PASSWD}" --team-id "${TEAM_ID}" --bundle-id ai.pixielabs.px --progress --verbose --wait -xcrun notarytool submit cli_darwin_arm64 --apple-id "${APPLE_ID}" --password "${AC_PASSWD}" --team-id "${TEAM_ID}" --bundle-id ai.pixielabs.px --progress --verbose --wait +xcrun notarytool submit cli_darwin_universal --apple-id "${APPLE_ID}" --password "${AC_PASSWD}" --team-id "${TEAM_ID}" --progress --verbose --wait +xcrun notarytool submit cli_darwin_amd64 --apple-id "${APPLE_ID}" --password "${AC_PASSWD}" --team-id "${TEAM_ID}" --progress --verbose --wait +xcrun notarytool submit cli_darwin_arm64 --apple-id "${APPLE_ID}" --password "${AC_PASSWD}" --team-id "${TEAM_ID}" --progress --verbose --wait cp cli_darwin_universal "${artifacts_dir}" cp cli_darwin_amd64 "${artifacts_dir}"