debug out the cmd

This commit is contained in:
Girish Ramakrishnan
2016-05-24 11:26:11 -07:00
parent 5ac1d5575c
commit 364f0ead51

View File

@@ -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' });
}