Skip to content

Commit 8c88645

Browse files
committedNov 9, 2018
Set the spawn windowsHide option to true
windowsHide <boolean> Hide the subprocess console window that would normally be created on Windows systems.
1 parent 37d9bd9 commit 8c88645

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ function handleArgs(command, args, options) {
5050
encoding: 'utf8',
5151
reject: true,
5252
cleanup: true
53-
}, parsed.options);
53+
}, parsed.options, {windowsHide: true});
5454

5555
// TODO: Remove in the next major release
5656
if (options.stripEof === false) {

0 commit comments

Comments
 (0)
Please sign in to comment.