File tree Expand file tree Collapse file tree 1 file changed +1
-11
lines changed Expand file tree Collapse file tree 1 file changed +1
-11
lines changed Original file line number Diff line number Diff line change @@ -63,17 +63,7 @@ else ifeq ($(shell uname -s),Linux)
6363 @exit 0
6464else
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 {} \;
7767endif
7868
7969package :
You can’t perform that action at this time.
0 commit comments