You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tuscany.apache.org by na...@apache.org on 2010/10/25 12:06:35 UTC

svn commit: r1027023 - /tuscany/sca-java-1.x/trunk/samples/helloworld-dojo-webapp/build.xml

Author: nash
Date: Mon Oct 25 10:06:35 2010
New Revision: 1027023

URL: http://svn.apache.org/viewvc?rev=1027023&view=rev
Log:
Merge r998364 Fix code for "clean" target in build.xml file (TUSCANY-3680)

Modified:
    tuscany/sca-java-1.x/trunk/samples/helloworld-dojo-webapp/build.xml

Modified: tuscany/sca-java-1.x/trunk/samples/helloworld-dojo-webapp/build.xml
URL: http://svn.apache.org/viewvc/tuscany/sca-java-1.x/trunk/samples/helloworld-dojo-webapp/build.xml?rev=1027023&r1=1027022&r2=1027023&view=diff
==============================================================================
--- tuscany/sca-java-1.x/trunk/samples/helloworld-dojo-webapp/build.xml (original)
+++ tuscany/sca-java-1.x/trunk/samples/helloworld-dojo-webapp/build.xml Mon Oct 25 10:06:35 2010
@@ -61,9 +61,7 @@
     <target name="package" depends="compile"/>
 
     <target name="clean">
-        <delete includeemptydirs="true">
-            <fileset dir="target"/>
-        </delete>
+        <delete dir="target" includeemptydirs="true"/>
     </target>