Skip to content

Commit 76abad0

Browse files
authored
Merge pull request #189 from menloresearch/chore/makefile-notarization-macos
chore: update notarization makefile
2 parents 9883d71 + 89e49d5 commit 76abad0

File tree

1 file changed

+1
-11
lines changed

1 file changed

+1
-11
lines changed

Makefile

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -63,17 +63,7 @@ else ifeq ($(shell uname -s),Linux)
6363
@exit 0
6464
else
6565
@echo "Starting notarization for macOS binaries..."
66-
@find build/bin -type f -exec | while read binary; do \
67-
echo "Notarizing $$(basename $$binary)..."; \
68-
quill notarize "$$binary"; \
69-
if [ $$? -eq 0 ]; then \
70-
echo "Successfully notarized $$(basename $$binary)"; \
71-
else \
72-
echo Failed to notarize $$(basename $$binary)"; \
73-
exit 1; \
74-
fi; \
75-
done
76-
@echo "All macOS binaries notarized successfully"
66+
@find build/bin -type f -exec env QUILL_NOTARY_KEY_ID="$(QUILL_NOTARY_KEY_ID)" QUILL_NOTARY_ISSUER="$(QUILL_NOTARY_ISSUER)" QUILL_NOTARY_KEY="$(QUILL_NOTARY_KEY)" quill notarize {} \;
7767
endif
7868

7969
package:

0 commit comments

Comments
 (0)