Skip to content

Commit fa4dd34

Browse files
committed
Properly match the rules "**/" and "!**/"
When processing a rule that ends in a slash, we strip it off and set the `is_only_dir` flag. We then apply the rule that paths that aren't absolute should be given an implicit `**/` prefix, while avoiding adding that prefix if it already exists. However, this means that we miss the case in which we had already stripped off the trailing slash and set `is_only_dir`. Correct this by also explicitly checking for that case. Fixes #649
1 parent 1aec4b1 commit fa4dd34

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

ignore/src/gitignore.rs

+3-1
Original file line numberDiff line numberDiff line change
@@ -455,7 +455,7 @@ impl GitignoreBuilder {
455455
// anywhere, so use a **/ prefix.
456456
if !is_absolute {
457457
// ... but only if we don't already have a **/ prefix.
458-
if !glob.actual.starts_with("**/") {
458+
if !(glob.actual.starts_with("**/") || (glob.actual == "**" && glob.is_only_dir)) {
459459
glob.actual = format!("**/{}", glob.actual);
460460
}
461461
}
@@ -620,6 +620,7 @@ mod tests {
620620
ignored!(ig28, ROOT, "src/*.rs", "src/grep/src/main.rs");
621621
ignored!(ig29, "./src", "/llvm/", "./src/llvm", true);
622622
ignored!(ig30, ROOT, "node_modules/ ", "node_modules", true);
623+
ignored!(ig31, ROOT, "**/", "foo/bar", true);
623624

624625
not_ignored!(ignot1, ROOT, "amonths", "months");
625626
not_ignored!(ignot2, ROOT, "monthsa", "months");
@@ -638,6 +639,7 @@ mod tests {
638639
ignot14, "./third_party/protobuf", "m4/ltoptions.m4",
639640
"./third_party/protobuf/csharp/src/packages/repositories.config");
640641
not_ignored!(ignot15, ROOT, "!/bar", "foo/bar");
642+
not_ignored!(ignot16, ROOT, "*\n!**/", "foo", true);
641643

642644
fn bytes(s: &str) -> Vec<u8> {
643645
s.to_string().into_bytes()

0 commit comments

Comments
 (0)