dazinator / DotNet.Glob

A fast globbing library for .NET / .NETStandard applications. Outperforms Regex.
MIT License
363 stars 27 forks source link

Pattern **/ not working #34

Closed renzoyzz closed 7 years ago

renzoyzz commented 7 years ago

The pattern "**/app.js" for example should match when a path looks like dist/app.js or dist/app.a72ka8234.js. The issue is it is not evaluating the "**/" part of the glob pattern as the documentation only mentions "/*\/" as a valid pattern. Any plan to implement this soon?

dazinator commented 7 years ago

Interesting. Yes I will look into this and get back to you.

renzoyzz commented 7 years ago

@dazinator thanks!

dazinator commented 7 years ago

Fixed in version 1.6.6, and regression test added. Should appear on nuget soon! Thanks for reporting.