Bugs item #1776101, was opened at 2007-08-17 11:25
Message generated for change (Comment added) made by drieseng
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=402868&aid=1776101&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: Core
Group: 0.85
>Status: Closed
>Resolution: Fixed
Priority: 5
Private: No
Submitted By: Glen Summers (glensummers)
>Assigned to: Gert Driesen (drieseng)
Summary: <fileset> case sensitivity bug on caseinsensitive filesystem

Initial Comment:
The following example includes different casing but would be expected to 
function correctly on a case insensitive file system:

<delete>
 <fileset>
  <include name="Src\Api\**\*.tlb"/>
  <include name="src\Api\**\Release\**" />
 </fileset>
</delete>

the Release directories are not cleaned in this case
it appears to fail due to the following code:

DirectoryScanner.cs line 529

// check if path is subdirectory of base directory
if (compare.IsPrefix(path, baseDirectory)) {
  includedPatterns.Add(entry);
}

I believe it should be:

if (compare.IsPrefix(path, baseDirectory, compareOptions)) {
 includedPatterns.Add(entry);
}

Regards,
Glen.

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

>Comment By: Gert Driesen (drieseng)
Date: 2007-08-22 15:23

Message:
Logged In: YES 
user_id=707851
Originator: NO

Fixed in CVS.

Thanks for the report !

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

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

-------------------------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/
_______________________________________________
nant-developers mailing list
nant-developers@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/nant-developers

Reply via email to