Merge pull request #6391 from danpls/replace-regex

libfetchers: Replace regex to clarify intent
This commit is contained in:
Eelco Dolstra
2022-04-11 11:14:10 +02:00
committed by GitHub
+1 -3
View File
@@ -28,9 +28,7 @@ static std::string readHead(const Path & path)
static bool isNotDotGitDirectory(const Path & path)
{
static const std::regex gitDirRegex("^(?:.*/)?\\.git$");
return not std::regex_match(path, gitDirRegex);
return baseNameOf(path) != ".git";
}
struct GitInputScheme : InputScheme