You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
366 B
21 lines
366 B
'use strict';
|
|
|
|
const getRunCmdEnv = require('./utils/getRunCmdEnv');
|
|
|
|
function runCmd(cmd, _args, fn) {
|
|
const args = _args || [];
|
|
const runner = require('child_process').spawn(cmd, args, {
|
|
// keep color
|
|
stdio: 'inherit',
|
|
env: getRunCmdEnv(),
|
|
});
|
|
|
|
runner.on('close', code => {
|
|
if (fn) {
|
|
fn(code);
|
|
}
|
|
});
|
|
}
|
|
|
|
module.exports = runCmd;
|