From 2c50cf72849e5403e5ccef35d43cefa53b7a614f Mon Sep 17 00:00:00 2001 From: Jarred Sumner Date: Mon, 1 Nov 2021 04:57:50 -0700 Subject: [PATCH] Update Makefile --- Makefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 7fe69d7b5a..413a9dedb8 100644 --- a/Makefile +++ b/Makefile @@ -523,13 +523,14 @@ release-bin-generate-zip: codesign --entitlements $(realpath entitlements.plist) --options runtime --force --timestamp --sign "$(CODESIGN_IDENTITY)" -vvvv --deep --strict bun ditto -ck --rsrc --sequesterRsrc --keepParent /tmp/bun-$(PACKAGE_JSON_VERSION)/bun-$(TRIPLET) $(BUN_DEPLOY_ZIP) +release-bin-codesign: + xcrun notarytool submit --wait $(BUN_DEPLOY_ZIP) --keychain-profile "bun" + else release-bin-generate-zip: cd /tmp/bun-$(PACKAGE_JSON_VERSION)/ && zip -r bun-$(TRIPLET).zip bun-$(TRIPLET) -release-bin-codesign: - xcrun notarytool submit --wait $(BUN_DEPLOY_ZIP) --keychain-profile "bun" endif