const childProcess = require('child_process')
/**
* @module Command
*/
/**
* This function run a single command in a sync way.
* @param {string} command
*/
exports.runSync = function (command) {
childProcess.execSync(command)
}
const childProcess = require('child_process')
/**
* @module Command
*/
/**
* This function run a single command in a sync way.
* @param {string} command
*/
exports.runSync = function (command) {
childProcess.execSync(command)
}