blob: d330055a1c8c8ce73eff8a9b6f8b06952b68506c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
'use strict'
const { Writable } = require('stream')
module.exports = function promisifyProcess(proc) {
// Takes a process (from the child_process module) and returns a promise
// that resolves when the process exits (or rejects, if the exit code is
// non-zero).
return new Promise((resolve, reject) => {
proc.stdout.pipe(process.stdout)
proc.stderr.pipe(process.stderr)
proc.on('exit', code => {
if (code === 0) {
resolve()
} else {
reject(code)
}
})
})
}
|