summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authornash <nash@13f79535-47bb-0310-9956-ffa450edef68>2010-09-17 23:17:17 +0000
committernash <nash@13f79535-47bb-0310-9956-ffa450edef68>2010-09-17 23:17:17 +0000
commit4df2291a732e9b57782bc60019c5729db89b69ad (patch)
treed7b0e14f5ab590ec97b0d35c2da974730cf19fef
parentb856e8693cddd01bc618dc4abdaf3fe2cec6fea0 (diff)
Fix code for "clean" target in build.xml file (TUSCANY-3680)
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@998364 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--sca-java-1.x/branches/sca-java-1.6.1/samples/helloworld-dojo-webapp/build.xml4
1 files changed, 1 insertions, 3 deletions
diff --git a/sca-java-1.x/branches/sca-java-1.6.1/samples/helloworld-dojo-webapp/build.xml b/sca-java-1.x/branches/sca-java-1.6.1/samples/helloworld-dojo-webapp/build.xml
index edfeb06195..ebefa279f2 100644
--- a/sca-java-1.x/branches/sca-java-1.6.1/samples/helloworld-dojo-webapp/build.xml
+++ b/sca-java-1.x/branches/sca-java-1.6.1/samples/helloworld-dojo-webapp/build.xml
@@ -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>