Skip to content

Commit 3752c60

Browse files
authored
Merge pull request #758 from processing/notary-test
incorporate #757 plus another quick fix
2 parents 354cbcb + ef2c653 commit 3752c60

File tree

1 file changed

+4
-7
lines changed

1 file changed

+4
-7
lines changed

build/build.xml

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -902,16 +902,14 @@
902902
<!-- https://developer.apple.com/account/ -->
903903

904904
<exec executable="/usr/bin/xcrun" dir="macos" failonerror="true">
905-
<arg value="altool" />
906-
<arg value="--notarize-app" />
905+
<arg value="notarytool" />
906+
<arg value="submit" />
907907

908908
<!-- spew a bunch of useless garbage that has nothing to do with success/failure -->
909909
<!-- <arg value="- -verbose" /> -->
910910

911-
<arg value="--primary-bundle-id" />
912-
<arg value="org.processing.app" />
913911

914-
<arg value="--username" />
912+
<arg value="--apple-id" />
915913
<arg value="${env.PROCESSING_APPLE_ID}" />
916914

917915
<arg value="--password" />
@@ -920,14 +918,13 @@
920918
<arg value="--team-id" />
921919
<arg value="${env.PROCESSING_TEAM_ID}" />
922920

923-
<arg value="--file" />
924921
<arg value="${dist.filename}" />
925922
</exec>
926923

927924
<echo>
928925
Check on notarization status with:
929926

930-
xcrun altool -u $PROCESSING_APPLE_ID -p $PROCESSING_APP_PASSWORD --notarization-info [the RequestUUID above]
927+
xcrun notarytool info --apple-id $PROCESSING_APPLE_ID --password $PROCESSING_APP_PASSWORD --team-id $PROCESSING_TEAM_ID [the Submission ID above]
931928
</echo>
932929
</target>
933930

0 commit comments

Comments
 (0)