This commit is contained in:
2025-06-27 07:28:16 -05:00
2 changed files with 1 additions and 2 deletions

View File

@ -117,7 +117,7 @@ int main(int argc,char** argv)
auto path = Environment::GetRealExecutablePath(args[0]);
Platform::Process p(path.ToString(),args);
if (p.Start())
p.WaitForExit();
p.WaitForExit();
else
std::cout << "Failed To Run Process: " << path.ToString() << std::endl;
}