Bugs item #1254054, was opened at 2005-08-08 12:01
Message generated for change (Comment added) made by drieseng
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=402868&aid=1254054&group_id=31650

Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: Tasks
>Group: 0.85
>Status: Closed
>Resolution: Wont Fix
Priority: 5
Submitted By: asparrowhawk (asparrowhawk)
>Assigned to: Gert Driesen (drieseng)
Summary: delete task does not remove directories matching a wild car

Initial Comment:
When using version

NAnt 0.85 (Build 0.85.1932.0; rc3; 16/04/2005)

of nant's delete task on Windows XP to remove 
directories containing old builds, the delete task fails to 
do anything

<delete>
        <fileset>
                <include name="C:\V1.4.*"/>
        </fileset>
</delete>

this does work with a previous build:

NAnt 0.85 (Build 0.85.1724.0; net-1.0.win32; nightly; 
20/09/2004)

I have tried both network UNC and local folder names

----------------------------------------------------------------------

>Comment By: Gert Driesen (drieseng)
Date: 2005-08-08 14:13

Message:
Logged In: YES 
user_id=707851

There have been some fixes in this area that might cause 
regressions when using "bad" syntax.

Try using this instead:

<delete>
<fileset>
<include name="C:\V1.4.*\**"/>
</fileset>
</delete>

----------------------------------------------------------------------

You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=402868&aid=1254054&group_id=31650


-------------------------------------------------------
SF.Net email is Sponsored by the Better Software Conference & EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA
Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf
_______________________________________________
nant-developers mailing list
nant-developers@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/nant-developers

Reply via email to