From 72b5740ed47575ffc92b977cba455ffd5842e3fa Mon Sep 17 00:00:00 2001 From: goeiecool9999 <7033575+goeiecool9999@users.noreply.github.com> Date: Fri, 3 Apr 2026 02:30:48 +0200 Subject: [PATCH] unix: check current working directory for case-insensitive relative paths when no more parents --- src/Common/unix/FileStream_unix.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Common/unix/FileStream_unix.cpp b/src/Common/unix/FileStream_unix.cpp index 33ce5f10..e7b6cf7b 100644 --- a/src/Common/unix/FileStream_unix.cpp +++ b/src/Common/unix/FileStream_unix.cpp @@ -8,7 +8,7 @@ fs::path findPathCI(const fs::path& path) fs::path fName = path.filename(); fs::path parentPath = path.parent_path(); if (parentPath.empty()) - return path; + parentPath = "."; if (!fs::exists(parentPath)) {