Initial commit
This commit is contained in:
11
node_modules/execa/lib/arguments/shell.js
generated
vendored
Normal file
11
node_modules/execa/lib/arguments/shell.js
generated
vendored
Normal file
@@ -0,0 +1,11 @@
|
||||
// When the `shell` option is set, any command argument is concatenated as a single string by Node.js:
|
||||
// https://github.com/nodejs/node/blob/e38ce27f3ca0a65f68a31cedd984cddb927d4002/lib/child_process.js#L614-L624
|
||||
// However, since Node 24, it also prints a deprecation warning.
|
||||
// To avoid this warning, we perform that same operation before calling `node:child_process`.
|
||||
// Shells only understand strings, which is why Node.js performs that concatenation.
|
||||
// However, we rely on users splitting command arguments as an array.
|
||||
// For example, this allows us to easily detect which arguments are passed.
|
||||
// So we do want users to pass array of arguments even with `shell: true`, but we also want to avoid any warning.
|
||||
export const concatenateShell = (file, commandArguments, options) => options.shell && commandArguments.length > 0
|
||||
? [[file, ...commandArguments].join(' '), [], options]
|
||||
: [file, commandArguments, options];
|
||||
Reference in New Issue
Block a user