shell: also print the args

This commit is contained in:
Girish Ramakrishnan
2024-02-28 17:56:20 +01:00
parent 0d38e443d1
commit bcc78d81a6
+1 -1
View File
@@ -27,7 +27,7 @@ async function execArgs(tag, file, args, options) {
assert(Array.isArray(args));
assert.strictEqual(typeof options, 'object');
debug(`${tag} exec: ${file}`);
debug(`${tag} exec: ${file} ${JSON.stringify(args)}`);
const execOptions = Object.assign({ encoding: 'utf8', shell: false }, options);