summaryrefslogtreecommitdiffstats
path: root/sca-java-1.x/branches/sca-java-1.6.1/samples/helloworld-bpel/build.xml
diff options
context:
space:
mode:
authornash <nash@13f79535-47bb-0310-9956-ffa450edef68>2010-09-17 21:08:10 +0000
committernash <nash@13f79535-47bb-0310-9956-ffa450edef68>2010-09-17 21:08:10 +0000
commitbf89303afdc4a67da1bffc6433f731e5b85e348a (patch)
treee993aaedb5ef0a0d13017abfbc1dab1c33f7f3ad /sca-java-1.x/branches/sca-java-1.6.1/samples/helloworld-bpel/build.xml
parentd0be875c6aacb02435860e82db3feebea99132ad (diff)
Fix code for "clean" target in build.xml files (TUSCANY-3680)
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@998324 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to '')
-rw-r--r--sca-java-1.x/branches/sca-java-1.6.1/samples/helloworld-bpel/build.xml4
1 files changed, 1 insertions, 3 deletions
diff --git a/sca-java-1.x/branches/sca-java-1.6.1/samples/helloworld-bpel/build.xml b/sca-java-1.x/branches/sca-java-1.6.1/samples/helloworld-bpel/build.xml
index 4f944dafdb..cebb8a4110 100644
--- a/sca-java-1.x/branches/sca-java-1.6.1/samples/helloworld-bpel/build.xml
+++ b/sca-java-1.x/branches/sca-java-1.6.1/samples/helloworld-bpel/build.xml
@@ -87,9 +87,7 @@
</target>
<target name="clean">
- <delete includeemptydirs="true">
- <fileset dir="target"/>
- </delete>
+ <delete dir="target" includeemptydirs="true"/>
</target>
</project>