http://nagoya.apache.org/bugzilla/show_bug.cgi?id=2648
*** shadow/2648 Mon Jul 16 23:39:43 2001
--- shadow/2648.tmp.19584 Mon Jul 16 23:39:43 2001
***************
*** 0 ****
--- 1,26 ----
+ +============================================================================+
+ | Delete does not delete all sub directories |
+ +----------------------------------------------------------------------------+
+ | Bug #: 2648 Product: Ant |
+ | Status: NEW Version: 1.3 |
+ | Resolution: Platform: PC |
+ | Severity: Major OS/Version: Windows 9x |
+ | Priority: Other Component: Core tasks |
+ +----------------------------------------------------------------------------+
+ | Assigned To: [EMAIL PROTECTED] |
+ | Reported By: [EMAIL PROTECTED] |
+ | CC list: Cc: |
+ +----------------------------------------------------------------------------+
+ | URL: |
+ +============================================================================+
+ | DESCRIPTION |
+ Below mentioned code left some of the subdirectories undeleted (and because
of
+ their parents too)! Running this second time does delete them actually!
+
+
+
+ <target name="clean-impl" description="Clean up classes dir">
+ <delete includeEmptyDirs="true" quiet="true" verbose="true">
+ <fileset dir="${build.home}" />
+ </delete>
+ </target>