[Kernel] Allow wildcard filter to end in *.

This commit is contained in:
gibbed 2020-11-15 13:28:00 -06:00 committed by Rick Gibbed
parent 32e8b47a33
commit e848a20c23
1 changed files with 0 additions and 4 deletions

View File

@ -92,10 +92,6 @@ static bool IsValidPath(const std::string_view s, bool is_pattern) {
} }
} }
} }
if (got_asterisk) {
// * must be followed by a . (*.)
return false;
}
return true; return true;
} }