1
0
mirror of https://github.com/moparisthebest/k-9 synced 2024-11-12 04:25:08 -05:00

fix our install target to match the new world order

This commit is contained in:
Jesse Vincent 2011-02-08 19:30:42 -05:00
parent b50a4f7528
commit 4f77063755

View File

@ -127,10 +127,10 @@
<!-- Install the package on the default emulator --> <!-- Install the package on the default emulator -->
<target name="install" depends="debug"> <target name="install" depends="debug">
<echo>Installing ${out-debug-package} onto default emulator...</echo> <echo>Installing ${out.debug.file} onto default emulator...</echo>
<exec executable="${adb}" failonerror="true"> <exec executable="${adb}" failonerror="true">
<arg value="install" /> <arg value="install" />
<arg path="${out-debug-package}" /> <arg path="${out.debug.file}" />
</exec> </exec>
</target> </target>
<target name="astyle"> <target name="astyle">