Closed yvan-sraka closed 1 year ago
Before this change, using --exclude foobar would search for the exact PATH foobar, which always resulted in false negatives. With this change, both the file ./foobar and the folder ./foobar/, including its contents, are filtered out as expected.
--exclude foobar
foobar
./foobar
./foobar/
Thank you!
Before this change, using
--exclude foobar
would search for the exact PATHfoobar
, which always resulted in false negatives. With this change, both the file./foobar
and the folder./foobar/
, including its contents, are filtered out as expected.