mirror of
https://github.com/therootcompany/pathman.git
synced 2025-04-16 04:20:38 +00:00
bugfix console.error
This commit is contained in:
parent
1ef3680b72
commit
571d639092
@ -19,7 +19,7 @@ function spawner(args) {
|
|||||||
console.info(chunk.toString('utf8'));
|
console.info(chunk.toString('utf8'));
|
||||||
});
|
});
|
||||||
runner.stderr.on('data', function(chunk) {
|
runner.stderr.on('data', function(chunk) {
|
||||||
console.err(chunk.toString('utf8'));
|
console.error(chunk.toString('utf8'));
|
||||||
});
|
});
|
||||||
runner.on('exit', function(code) {
|
runner.on('exit', function(code) {
|
||||||
if (0 !== code) {
|
if (0 !== code) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user