Skip to content
This repository was archived by the owner on Mar 4, 2020. It is now read-only.

Commit 16e5383

Browse files
codebyterenitsakh
authored andcommitted
fix: don't create console window when creating process
This commit prevents console windows from being spawned when creating processes to better align with what Windows users expect and should be removed when upgrading to a version that includes nodejs/node#21316
1 parent 76387c1 commit 16e5383

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

deps/uv/src/win/process.c

+3
Original file line numberDiff line numberDiff line change
@@ -1099,6 +1099,9 @@ int uv_spawn(uv_loop_t* loop,
10991099
process_flags |= DETACHED_PROCESS | CREATE_NEW_PROCESS_GROUP;
11001100
}
11011101

1102+
/* Don't create console window. */
1103+
process_flags |= CREATE_NO_WINDOW;
1104+
11021105
if (!CreateProcessW(application_path,
11031106
arguments,
11041107
NULL,

0 commit comments

Comments
 (0)