Improve error message when `OS.execute()` fails on Windows

This takes the error message from 4.x and backports it to 3.x.
This commit is contained in:
Hugo Locurcio 2024-09-19 02:03:29 +02:00
parent 8c444fb9c9
commit 7efd75972d
No known key found for this signature in database
GPG Key ID: 39E8F8BE30B0A49C
1 changed files with 1 additions and 1 deletions

View File

@ -2978,7 +2978,7 @@ Error OS_Windows::execute(const String &p_path, const List<String> &p_arguments,
CloseHandle(pipe[0]); // Cleanup pipe handles.
CloseHandle(pipe[1]);
}
ERR_FAIL_COND_V(ret == 0, ERR_CANT_FORK);
ERR_FAIL_COND_V_MSG(ret == 0, ERR_CANT_FORK, "Could not create child process: " + String(modstr.ptr()));
if (p_blocking) {
if (r_pipe) {