You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@ant.apache.org by jh...@apache.org on 2014/04/11 08:55:49 UTC

svn commit: r1586585 - /ant/core/trunk/launch-build.xml

Author: jhm
Date: Fri Apr 11 06:55:49 2014
New Revision: 1586585

URL: http://svn.apache.org/r1586585
Log:
Property "args" is set on project level. So setting a default value inside a target wont work.

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=1586585&r1=1586584&r2=1586585&view=diff
==============================================================================
--- ant/core/trunk/launch-build.xml (original)
+++ ant/core/trunk/launch-build.xml Fri Apr 11 06:55:49 2014
@@ -32,8 +32,6 @@
 
     <target name="launch">
         <fail unless="launch.cmd" message="Unsupported build platform" />
-        <!-- by default no args, overridable on the Ant command line with -Dargs="" -->
-        <property name="args" value="" />
         <echo message="Launching ${launch.cmd} ${args}" />
         <exec executable="${launch.cmd}" failonerror="true">
             <arg line="${args}" />