Skip to content

Commit

Permalink
fix build on win
Browse files Browse the repository at this point in the history
  • Loading branch information
aharui committed Jul 29, 2014
1 parent 2454c94 commit f031f5d
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions MD5Checker/build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -84,12 +84,14 @@
</condition>

<target name="main" depends="build">
<exec executable="${AIR_HOME}/bin/adl.exe" osfamily="windows" resultproperty="md5result" failonerror="false">
<exec executable="${AIR_HOME}/bin/adl.exe" dir="${basedir}/src" osfamily="windows" resultproperty="md5result" failonerror="false">
<arg value="-runtime"/>
<arg value="${AIR_HOME}/runtimes/air/win"/>
<arg value="${basedir}/src/MD5Checker-app.xml"/>
<arg value="--" />
<arg value="-log=${basedir}/MD5CheckerLog.txt"/>
</exec>
<exec executable="${AIR_HOME}/bin/adl" osfamily="mac" resultproperty="md5result" failonerror="false">
<exec executable="${AIR_HOME}/bin/adl" dir="${basedir}/src" osfamily="mac" resultproperty="md5result" failonerror="false">
<arg value="-runtime"/>
<arg value="${AIR_HOME}/runtimes/air/mac"/>
<arg value="${basedir}/src/MD5Checker-app.xml"/>
Expand Down

0 comments on commit f031f5d

Please sign in to comment.