We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
given the following test code ...
var glob = DotNet.Globbing.Glob.Parse( @"C:\name\**" ); bool result = glob.IsMatch( @"C:\name.ext" ); result = glob.IsMatch( @"C:\name_longer.ext" );`
var glob = DotNet.Globbing.Glob.Parse( @"C:\name\**" );
bool result = glob.IsMatch( @"C:\name.ext" );
result = glob.IsMatch( @"C:\name_longer.ext"
... the result of IsMatch() is true in both cases. To my mind this is wrong. The result should be false. I am using DotNet.Glob-1.6.1 from nuget.org.
The text was updated successfully, but these errors were encountered:
Thanks for finding this. I'll add test coverage for this case and get back to you!
Sorry, something went wrong.
Verified.
1589ec6
Hotfix pushed. Once appveyor builds and publishes (takes a few minutes) version 1.6.2 will appear on nuget - upgrade to that for the fix.
Thank you for reporting.
dazinator
No branches or pull requests
given the following test code ...
var glob = DotNet.Globbing.Glob.Parse( @"C:\name\**" );
bool result = glob.IsMatch( @"C:\name.ext" );
result = glob.IsMatch( @"C:\name_longer.ext"
);`... the result of IsMatch() is true in both cases. To my mind this is wrong. The result should be false. I am using DotNet.Glob-1.6.1 from nuget.org.
The text was updated successfully, but these errors were encountered: