diff options
author | nash <nash@13f79535-47bb-0310-9956-ffa450edef68> | 2010-09-17 23:17:17 +0000 |
---|---|---|
committer | nash <nash@13f79535-47bb-0310-9956-ffa450edef68> | 2010-09-17 23:17:17 +0000 |
commit | 4df2291a732e9b57782bc60019c5729db89b69ad (patch) | |
tree | d7b0e14f5ab590ec97b0d35c2da974730cf19fef | |
parent | b856e8693cddd01bc618dc4abdaf3fe2cec6fea0 (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.xml | 4 |
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> |