Value for windows condition is missing a dot before "exe". "adbexe" should be "adb.exe"

This commit is contained in:
Simon Schoar
2009-06-10 01:51:37 +02:00
parent a42091afb7
commit 8bbfa508be

View File

@@ -64,7 +64,7 @@
<property name="out-debug-package" value="${out-folder}/${ant.project.name}-debug.apk"/>
<!-- Tools -->
<condition property="exe" value="exe" else=""><os family="windows"/></condition>
<condition property="exe" value=".exe" else=""><os family="windows"/></condition>
<property name="adb" value="${android-tools}/adb${exe}"/>
<!-- rules -->