You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Ran into this issue during implementation of #880.
Doing this on fsi with Fake.Globbing opened:
> isMatch "/some/random/path/**/Properties/*"
"/some/random/path/somewhere/Properties/AssemblyInfo.cs";;
val it : bool = false
> isMatch "/some/random/path/**/Properties/*.*"
"/some/random/path/somewhere/Properties/AssemblyInfo.cs";;
val it : bool = true
I'd expect both to be true.
The text was updated successfully, but these errors were encountered:
Ran into this issue during implementation of #880.
Doing this on fsi with Fake.Globbing opened:
I'd expect both to be true.
The text was updated successfully, but these errors were encountered: