This commit is contained in:
Joakim Plate 2025-03-28 14:47:04 +01:00 committed by GitHub
commit a9d1793193
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -336,7 +336,7 @@ bool FilePath::CreateDirectoriesRecursively() const {
return false;
}
if (pathname_.empty() || this->DirectoryExists()) {
if (pathname_.empty() || pathname_ == kCurrentDirectoryString || this->DirectoryExists()) {
return true;
}