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
The underlying system glob(3) doesn't support any recursive glob so this would have to be implemented entirely in PathKit. You might be better expressing your glob using recursiveChildren.filter { $0.extension == "swift" } or similar.
However, If you'd like to have recursive option for glob please file a pull request including test cases.
It'd be awesome if you could support a recursive glob, e.g
/some/path/**/*.swift
which would match arbitrary nesting.Thanks for PathKit, love it 🤘🏼
The text was updated successfully, but these errors were encountered: