Skip to content

Commit

Permalink
Fix the signing tasks (#319)
Browse files Browse the repository at this point in the history
  • Loading branch information
byrnHDF authored Aug 20, 2024
1 parent 40bafac commit 0ca0e60
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -1372,7 +1372,7 @@

<condition property="isSignXMac" else="false">
<and>
<equals arg1="${isXMac}" arg2="true" />
<equals arg1="${isMac}" arg2="true" />
<equals arg1="${sign_state}" arg2="true" />
<equals arg1="${XPackage}" arg2="true" />
</and>
Expand Down Expand Up @@ -1488,7 +1488,7 @@
<target name="binaryPackX" depends="setXPackage, binaryPackXWindows, binaryPackXUnix, binaryPackXMac, binaryPackSignXMac"
description="Packages up the installer, the license file and the README file into a distributable form" />

<target name="binaryPackSignXWindows" depends="createJXPackage, createWindowsREADME" if="${sign.enable}">
<target name="binaryPackSignXWindows" depends="createJXPackage, createWindowsREADME" if="${isSignXWindows}">
<attrib file="${basedir}\${dist.dir}\${ant.project.name}-${app.version}.msi" readonly="false" />
<echo message="xxxx Sign the windows binary xxxx"/>
<!-- Sign the generated exe -->
Expand Down

0 comments on commit 0ca0e60

Please sign in to comment.