http://nagoya.apache.org/bugzilla/show_bug.cgi?id=1551
*** shadow/1551 Fri Apr 27 00:51:40 2001
--- shadow/1551.tmp.19537 Fri Apr 27 00:51:40 2001
***************
*** 0 ****
--- 1,37 ----
+ +============================================================================+
+ | delete task follow symbolic links |
+ +----------------------------------------------------------------------------+
+ | Bug #: 1551 Product: Ant |
+ | Status: NEW Version: 1.3 |
+ | Resolution: Platform: Sun |
+ | Severity: Normal OS/Version: Other |
+ | Priority: Component: Core tasks |
+ +----------------------------------------------------------------------------+
+ | Assigned To: [EMAIL PROTECTED] |
+ | Reported By: [EMAIL PROTECTED] |
+ | CC list: Cc: |
+ +----------------------------------------------------------------------------+
+ | URL: |
+ +============================================================================+
+ | DESCRIPTION |
+ i made a simbolic lynk under the directory webapps/<project>,
+ containg some files to be displayed
+
+ > cd $TOMCAT_HOME/webapps/<project>
+ > ln -s /usr/local/.../invoices invoices
+
+ Executing the following target clean:
+
+ > build clean
+
+
+ it followed the symbolic link, deleting the entire directory content.
+
+ content of build.xml:
+
+
+ ...
+ <target name="clean">
+ <delete dir="${deploy.home}"/>
+ </target>
+ ...