You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@ant.apache.org by bu...@apache.org on 2004/01/14 08:16:28 UTC

DO NOT REPLY [Bug 26108] - delete task fails for jar file in CWD on WNT

DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://nagoya.apache.org/bugzilla/show_bug.cgi?id=26108>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=26108

delete task fails for jar file in CWD on WNT





------- Additional Comments From jan@materne.de  2004-01-14 07:16 -------
I extended your buildfile for tests:

<project default="clean">
    <target name="create">
        <jar destfile="build.jar" includes="build.xml"/>
    </target>

    <target name="clean">
        <echo>Using ${ant.version}</echo>
        <delete>
            <fileset dir="." includes="build.jar"/>
        </delete>
    </target>
</project>


And tried that with several Ant versions (one ant invocation for creating and 
another one for deleting):

clean:
     [echo] Using Apache Ant version 1.7alpha compiled on November 18 2003
   [delete] Deleting 1 files from C:\temp\xxx

BUILD SUCCESSFUL

clean:
     [echo] Using Apache Ant version 1.5.4 compiled on August 12 2003
   [delete] Deleting 1 files from C:\temp\xxx

BUILD SUCCESSFUL

clean:
     [echo] Using Apache Ant version 1.6beta2 compiled on October 16 2003
   [delete] Deleting 1 files from C:\temp\xxx

BUILD SUCCESSFUL

clean:
     [echo] Using Apache Ant version 1.6beta3 compiled on December 5 2003
   [delete] Deleting 1 files from C:\temp\xxx

BUILD SUCCESSFUL

clean:
     [echo] Using Apache Ant version 1.6.0 compiled on December 18 2003
   [delete] Deleting 1 files from C:\temp\xxx

BUILD SUCCESSFUL

 

Mmmh ... oh: I´m working on a W2K computer. So someone has to test that against 
a NT4. Don´t know if I´ll find one ...

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@ant.apache.org
For additional commands, e-mail: dev-help@ant.apache.org