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
I ran with the file globbing pattern of -f "docs/**/*.md" in the base folder and it only found qux.md.
So it seems that this tool does support the ** syntax but that it won't find files in the docs folder, but only subdirs of of docs, but probably not subdirds of those subdirs 😄
Hello,
it turns out that default golang Glob function does not support common globstar (
**
) syntax. This syntax allows matching of files in subdirs too.Here are some useful links:
The text was updated successfully, but these errors were encountered: