Fix workingDirectory on Process on UNIX

This commit is contained in:
2025-09-26 14:42:47 -05:00
parent 86d7c6144b
commit 4f152d525b

View File

@@ -611,6 +611,7 @@ CreateProcessW(
close(strm_stderr[0]);
close(strm_stderr[1]);
}
Tesses::Framework::Filesystem::VFSPath::SetAbsoluteCurrentDirectory(this->workingDirectory);
execve(this->name.c_str(),argv,envp);
exit(1);
}