Get process betterGet shell somewhat working

This commit is contained in:
2025-06-26 17:19:51 -05:00
parent e4f75b69a6
commit 55408a3f1b
9 changed files with 349 additions and 48 deletions

View File

@ -208,6 +208,7 @@ namespace Tesses::Framework::Filesystem
}
VFSPath VFSPath::MakeAbsolute(VFSPath curDir)
{
if (!this->relative) return *this;
VFSPath p2 = curDir / *this;
return p2.CollapseRelativeParents();
}