UNPKG
sugos-travis
Version:
latest (2.0.7)
2.0.7
2.0.6
2.0.5
2.0.4
Scripts for Travis CI
github.com/realglobe-Inc/sugos-travis
realglobe-inc/sugos-travis
sugos-travis
/
lib
/
util
/
exec.js
9 lines
(6 loc)
•
213 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
const
{execSync} =
require
(
'child_process'
)
function
exec
(
command, options = {}
) {
console
.
log
(
`\n>
${command}
`
)
return
execSync
(command,
Object
.
assign
({
stdio
:
'inherit'
}, options)) }
module
.
exports
= exec