Fix the regex matcher

This commit is contained in:
Kirill Bulatov 2023-12-04 23:00:01 +02:00
parent f0ca7141b8
commit 2c2c14a360
4 changed files with 41 additions and 17 deletions

View file

@ -2290,10 +2290,9 @@ impl LocalSnapshot {
return true;
}
if !path.pop() {
break;
return false;
}
}
false
}
}