You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jmeter.apache.org by se...@apache.org on 2012/02/02 20:19:28 UTC

svn commit: r1239773 - /jmeter/trunk/build.xml

Author: sebb
Date: Thu Feb  2 19:19:27 2012
New Revision: 1239773

URL: http://svn.apache.org/viewvc?rev=1239773&view=rev
Log:
Unfortunately Ant reports failure if a directory does not exist
So don't fail if so (as was true previously with quiet mode)

Modified:
    jmeter/trunk/build.xml

Modified: jmeter/trunk/build.xml
URL: http://svn.apache.org/viewvc/jmeter/trunk/build.xml?rev=1239773&r1=1239772&r2=1239773&view=diff
==============================================================================
--- jmeter/trunk/build.xml (original)
+++ jmeter/trunk/build.xml Thu Feb  2 19:19:27 2012
@@ -1843,7 +1843,8 @@ run JMeter unless all the JMeter jars ar
   </target>
 
   <target name="clean" description="Clean up to force a build from source.">
-    <delete quiet="false">
+    <!-- Unfortunately Ant reports failure if a directory does not exist -->
+    <delete quiet="false" failonerror="false">
         <fileset dir="${dest.jar.jmeter}" includes="ApacheJMeter.jar"/>
         <fileset dir="${lib.dir}" includes="jorphan.jar"/>
         <fileset dir="${lib.dir}" includes="bshclient.jar"/>