UNPKG

sugos-travis

Version:
9 lines (6 loc) 213 B
const {execSync} = require('child_process') function exec (command, options = {}) { console.log(`\n> ${command}`) return execSync(command, Object.assign({stdio: 'inherit'}, options)) } module.exports = exec