Normalize paths created by the RelativeFileSystemAdapter. Fixes issues with trailin "/.".
This commit is contained in:
parent
4d19752964
commit
bd06118b29
@ -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
|
||||||
|
Loading…
x
Reference in New Issue
Block a user