Skip to content

Commit

Permalink
Delete expired certificates to streamline builds
Browse files Browse the repository at this point in the history
Per #1187
  • Loading branch information
tresf committed Oct 27, 2023
1 parent 00779f0 commit c795b28
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions ant/apple/installer.xml
Original file line number Diff line number Diff line change
Expand Up @@ -269,6 +269,18 @@
</target>

<target name="add-certificates" depends="get-identity">
<!-- Remove expired certificates -->
<exec executable="security">
<arg value="delete-certificate"/>
<arg value="-Z"/>
<arg value="A69020D49B47383064ADD5779911822850235953"/>
</exec>
<exec executable="security">
<arg value="delete-certificate"/>
<arg value="-Z"/>
<arg value="6FD7892971854384AF40FAD1E0E6C56A992BC5EE"/>
</exec>

<exec executable="security">
<arg value="add-certificates"/>
<arg value="${basedir}/ant/apple/certs/apple-packager.cer"/>
Expand Down

0 comments on commit c795b28

Please sign in to comment.