This commit is contained in:
Joakim Plate 2025-02-17 18:34:36 +01:00 committed by GitHub
commit a37f79304d
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; return false;
} }
if (pathname_.empty() || this->DirectoryExists()) { if (pathname_.empty() || pathname_ == kCurrentDirectoryString || this->DirectoryExists()) {
return true; return true;
} }