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
When the dot option is disabled (default behavior), foo/{.,}**/{.,}* matches foo/bar/.file but not foo/.bar/file
Expected behavior
foo/{.,}**/{.,}* should still match foo/.bar/file even if the dot option is disabled because the pattern explicitly includes subdirectories starting with ..
Environment
Actual behavior
When the
dot
option is disabled (default behavior),foo/{.,}**/{.,}*
matchesfoo/bar/.file
but notfoo/.bar/file
Expected behavior
foo/{.,}**/{.,}*
should still matchfoo/.bar/file
even if thedot
option is disabled because the pattern explicitly includes subdirectories starting with.
.Steps to reproduce
Create demo files, run sample code
Code sample
Directory structure:
The text was updated successfully, but these errors were encountered: