diff options
author | 2021-11-01 04:57:50 -0700 | |
---|---|---|
committer | 2021-11-01 04:57:50 -0700 | |
commit | 2c50cf72849e5403e5ccef35d43cefa53b7a614f (patch) | |
tree | 53c36570ac410d2026ce97cb0c4f8618e820f88c | |
parent | bea0dca55df70d734e77cd6ea6ba309012ad0c94 (diff) | |
download | bun-2c50cf72849e5403e5ccef35d43cefa53b7a614f.tar.gz bun-2c50cf72849e5403e5ccef35d43cefa53b7a614f.tar.zst bun-2c50cf72849e5403e5ccef35d43cefa53b7a614f.zip |
Update Makefile
Diffstat (limited to '')
-rw-r--r-- | Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -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 |