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
We cannot use the globwalk crate as it does not support globbing for parent directories (i.e. paths like ../../* won't work). We will probably need to roll our own directory walker, either by using globset or modifying glob to support OsStrings.
The text was updated successfully, but these errors were encountered:
I added support for non-UTF-8 filenames in glob, so I think we'll just use that. There are a couple of pull requests in the upstream repository that haven't been merged despite sitting there for a while, so we may want to fork the repository to merge in those changes.
We cannot use the
globwalk
crate as it does not support globbing for parent directories (i.e. paths like../../*
won't work). We will probably need to roll our own directory walker, either by usingglobset
or modifyingglob
to supportOsString
s.The text was updated successfully, but these errors were encountered: