diff options
author | John MacFarlane <jgm@berkeley.edu> | 2020-03-22 11:13:20 -0700 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2020-03-22 11:13:20 -0700 |
commit | 22bf3d6727aa36f6079f89c602c59ba7b71e4475 (patch) | |
tree | 7d30f983543d6a4f5a23078a6a0209c233e6d82e /macos | |
parent | 36cdaa4845b31ce42a2c4a2f96f25a8ea1225054 (diff) | |
download | pandoc-22bf3d6727aa36f6079f89c602c59ba7b71e4475.tar.gz |
Small changes to macos release candidate Makefile.
Diffstat (limited to 'macos')
-rw-r--r-- | macos/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/macos/Makefile b/macos/Makefile index aec2a0983..bc9d98c8a 100644 --- a/macos/Makefile +++ b/macos/Makefile @@ -3,7 +3,7 @@ BASE=pandoc-$(VERSION) DEST=pandoc/usr/local ALL=$(BASE)-macOS.pkg $(BASE)-macOS.zip -all: $(ALL) +all: $(ALL) notarize signed.txt: $(DEST) chmod +x $(DEST)/bin/pandoc $(DEST)/bin/pandoc-citeproc @@ -25,7 +25,7 @@ gon.hcl: version.txt echo "notarize {\n path = \"$(BASE)-macOS.pkg\"\n bundle_id = \"org.pandoc.pandoc\"\n staple = true\n}\napple_id {\n username = \"jgm@berkeley.edu\"\n password = \"@env:AC_PASSWORD\"\n}" > $@ notarize: gon.hcl $(BASE)-macOS.pkg - gon -log-level=info ./gon.hcl + gon -log-level=warn ./gon.hcl clean: rm signed.txt $(BASE) pandoc.pkg gon.hcl |