diff --git a/src/shell.js b/src/shell.js index 5432cc737..93507b917 100644 --- a/src/shell.js +++ b/src/shell.js @@ -18,6 +18,7 @@ function execSync(tag, cmd) { assert.strictEqual(typeof tag, 'string'); assert.strictEqual(typeof cmd, 'string'); + debug(cmd); child_process.execSync(cmd, { stdio: 'inherit' }); }