Normalize paths created by the RelativeFileSystemAdapter. Fixes issues with trailin "/.".

This commit is contained in:
Patrick 2025-09-21 12:34:38 +02:00
parent 4d19752964
commit bd06118b29

View File

@ -97,7 +97,7 @@ fs::path RelativeFileSystemAdapter<TWrapped>::appendPath(const fs::path& other)
else { else {
combinedPath /= other; combinedPath /= other;
} }
return combinedPath; return combinedPath.lexically_normal();
} }
namespace vfs_pipe namespace vfs_pipe