Author: hibou
Date: Sun Mar 24 18:58:16 2013
New Revision: 1460423
URL: http://svn.apache.org/r1460423
Log:
Fix launch of the build on Jenkins
Modified:
ant/core/trunk/launch-build.xml
Modified: ant/core/trunk/launch-build.xml
URL:
http://svn.apache.org/viewvc/ant/core/trunk/launch-build.xml?rev=1460423&r1=1460422&r2=1460423&view=diff
==============================================================================
--- ant/core/trunk/launch-build.xml (original)
+++ ant/core/trunk/launch-build.xml Sun Mar 24 18:58:16 2013
@@ -33,7 +33,7 @@
<!-- by default no args, overridable on the Ant command line with
-Dargs="" -->
<property name="args" value="" />
<echo message="Launching ${launch.cmd} ${args}" />
- <exec command="${launch.cmd}" failonerror="true">
+ <exec executable="${launch.cmd}" failonerror="true">
<arg line="${args}" />
</exec>
</target>