@@ -264,6 +264,8 @@ changes:
264
264
* ` gid ` {number} Sets the group identity of the process (see setgid(2)).
265
265
* ` windowsHide ` {boolean} Hide the subprocess console window that would
266
266
normally be created on Windows systems. ** Default:** ` false ` .
267
+ * ` windowsVerbatimArguments ` {boolean} No quoting or escaping of arguments is
268
+ done on Windows. Ignored on Unix. ** Default:** ` false ` .
267
269
* ` callback ` {Function} Called with the output when process terminates.
268
270
* ` error ` {Error}
269
271
* ` stdout ` {string|Buffer}
@@ -338,6 +340,8 @@ changes:
338
340
When this option is provided, it overrides ` silent ` . If the array variant
339
341
is used, it must contain exactly one item with value ` 'ipc' ` or an error
340
342
will be thrown. For instance ` [0, 1, 2, 'ipc'] ` .
343
+ * ` windowsVerbatimArguments ` {boolean} No quoting or escaping of arguments is
344
+ done on Windows. Ignored on Unix. ** Default:** ` false ` .
341
345
* ` uid ` {number} Sets the user identity of the process (see setuid(2)).
342
346
* ` gid ` {number} Sets the group identity of the process (see setgid(2)).
343
347
* Returns: {ChildProcess}
@@ -404,6 +408,9 @@ changes:
404
408
` '/bin/sh' ` on UNIX, and ` process.env.ComSpec ` on Windows. A different
405
409
shell can be specified as a string. See [ Shell Requirements] [ ] and
406
410
[ Default Windows Shell] [ ] . ** Default:** ` false ` (no shell).
411
+ * ` windowsVerbatimArguments ` {boolean} No quoting or escaping of arguments is
412
+ done on Windows. Ignored on Unix. This is set to ` true ` automatically
413
+ when ` shell ` is specified. ** Default:** ` false ` .
407
414
* ` windowsHide ` {boolean} Hide the subprocess console window that would
408
415
normally be created on Windows systems. ** Default:** ` false ` .
409
416
* Returns: {ChildProcess}
@@ -813,6 +820,9 @@ changes:
813
820
` '/bin/sh' ` on UNIX, and ` process.env.ComSpec ` on Windows. A different
814
821
shell can be specified as a string. See [ Shell Requirements] [ ] and
815
822
[ Default Windows Shell] [ ] . ** Default:** ` false ` (no shell).
823
+ * ` windowsVerbatimArguments ` {boolean} No quoting or escaping of arguments is
824
+ done on Windows. Ignored on Unix. This is set to ` true ` automatically
825
+ when ` shell ` is specified. ** Default:** ` false ` .
816
826
* ` windowsHide ` {boolean} Hide the subprocess console window that would
817
827
normally be created on Windows systems. ** Default:** ` false ` .
818
828
* Returns: {Object}
0 commit comments