All files runCommand.js

0% Statements 0/4
100% Branches 0/0
0% Functions 0/1
0% Lines 0/4
1 2 3 4 5 6 7             
const runCommand = function (cmd) {
  const execSync = require('child_process').execSync;
  execSync(cmd, { stdio:[0, 1, 2] });
};
 
module.exports = runCommand;