Skip to content

Commit

Permalink
Allow signing of already signed binaries
Browse files Browse the repository at this point in the history
  • Loading branch information
tresf committed May 13, 2021
1 parent 15a7e38 commit d2a0442
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ant/apple/installer.xml
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@
<echo level="info" message="Signing ${dist.dir}/libs/*.dylib using ${apple.packager.signid}"/>
<exec executable="bash" failonerror="true">
<arg value="-c"/>
<arg value="echo &quot;$(find ${dist.dir}/libs/*.dylib)&quot; |tr ':' '\n' |xargs codesign -s &quot;${apple.packager.signid}&quot; -v"/>
<arg value="echo &quot;$(find ${dist.dir}/libs/*.dylib)&quot; |tr ':' '\n' |xargs codesign -f -s &quot;${apple.packager.signid}&quot; -v"/>
</exec>

</target>
Expand Down Expand Up @@ -178,7 +178,7 @@
<echo message="Signing ${found.jar.path} using ${apple.packager.signid}"/>
<exec executable="bash" failonerror="true">
<arg value="-c"/>
<arg value="echo &quot;${found.files.paths}&quot; |tr ':' '\n' |xargs codesign -s &quot;${apple.packager.signid}&quot; -v"/>
<arg value="echo &quot;${found.files.paths}&quot; |tr ':' '\n' |xargs codesign -f -s &quot;${apple.packager.signid}&quot; -v"/>
</exec>

<pathconvert property="found.jar.rel">
Expand Down

0 comments on commit d2a0442

Please sign in to comment.