move checksum task to underneath the installerexe task; if the installerexe
task isn't run, there's no exe to run sha512sum on
This commit is contained in:
@ -99,6 +99,7 @@
|
|||||||
<copy file="${resources}/images/itoopie-256.png" tofile="${dist}/logo.png"/>
|
<copy file="${resources}/images/itoopie-256.png" tofile="${dist}/logo.png"/>
|
||||||
<copy file="LICENSE" tofile="${dist}/license.txt"/>
|
<copy file="LICENSE" tofile="${dist}/license.txt"/>
|
||||||
<copy file="history.txt" tofile="${dist}/history.txt"/>
|
<copy file="history.txt" tofile="${dist}/history.txt"/>
|
||||||
|
|
||||||
<ant target="doAppEXE" />
|
<ant target="doAppEXE" />
|
||||||
|
|
||||||
<taskdef name="izpack" classpath="${basedir}/installer/lib/izpack/standalone-compiler.jar" classname="com.izforge.izpack.ant.IzPackTask" />
|
<taskdef name="izpack" classpath="${basedir}/installer/lib/izpack/standalone-compiler.jar" classname="com.izforge.izpack.ant.IzPackTask" />
|
||||||
@ -110,9 +111,9 @@
|
|||||||
compressionlevel="9" />
|
compressionlevel="9" />
|
||||||
|
|
||||||
<ant target="installerexe" />
|
<ant target="installerexe" />
|
||||||
<checksum file="itoopieinstall.exe" algorithm="SHA-512" fileext=".sha512"/>
|
|
||||||
</target>
|
</target>
|
||||||
<target name="installerexe">
|
<target name="installerexe" unless="noExe" >
|
||||||
|
<checksum file="itoopieinstall.exe" algorithm="SHA-512" fileext=".sha512"/>
|
||||||
<!--<condition property="noExe">
|
<!--<condition property="noExe">
|
||||||
<os arch="x86_64" />
|
<os arch="x86_64" />
|
||||||
</condition>
|
</condition>
|
||||||
|
Reference in New Issue
Block a user