We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3bd1f5f commit a1c153bCopy full SHA for a1c153b
Makefile.in
@@ -87,11 +87,12 @@ dmg:
87
rm -f htmldoc/htmldoc.zip
88
ditto -c -k --keepParent htmldoc/htmldoc.app htmldoc/htmldoc.zip
89
echo Notarizing application
90
- xcrun altool --notarize-app -f htmldoc/htmldoc.zip \
91
- --primary-bundle-id org.msweet.htmldoc \
92
- --username "$(APPLEID)" \
93
- --password "@keychain:AC_$(TEAMID)" \
94
- --asc-provider "$(TEAMID)"
+ xcrun notarytool submit htmldoc/htmldoc.zip \
+ --apple-id "$${APPLEID}" \
+ --keychain-profile "AC_$${TEAMID}" \
+ --team-id "$${TEAMID}" \
+ --wait
95
+ xcrun stapler staple htmldoc/htmldoc.app
96
echo Making disk image
97
rm -f ~/Desktop/htmldoc-$(VERSION)-macos.dmg
98
dmgbuild -s dmgbuild.py "HTMLDOC $(VERSION)" ~/Desktop/htmldoc-$(VERSION)-macos.dmg
0 commit comments