You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@etch.apache.org by di...@apache.org on 2009/02/05 19:52:28 UTC

svn commit: r741240 - /incubator/etch/branches/release-1.0.2/examples/build.xml

Author: dixson
Date: Thu Feb  5 18:52:27 2009
New Revision: 741240

URL: http://svn.apache.org/viewvc?rev=741240&view=rev
Log:
fix cleanup of 'target'

Modified:
    incubator/etch/branches/release-1.0.2/examples/build.xml

Modified: incubator/etch/branches/release-1.0.2/examples/build.xml
URL: http://svn.apache.org/viewvc/incubator/etch/branches/release-1.0.2/examples/build.xml?rev=741240&r1=741239&r2=741240&view=diff
==============================================================================
--- incubator/etch/branches/release-1.0.2/examples/build.xml (original)
+++ incubator/etch/branches/release-1.0.2/examples/build.xml Thu Feb  5 18:52:27 2009
@@ -7,6 +7,7 @@
     <property name="target" location="${basedir}/target" />
     
     <target name="do-clean">
+        <delete dir="${target}" failonerror="false" quiet="true" />
     </target>
     
     <target name="do-init">