From 571d6390923b4b178e949200f8ef4a658defe1ff Mon Sep 17 00:00:00 2001 From: AJ ONeal Date: Sat, 10 Aug 2019 01:17:32 -0600 Subject: [PATCH] bugfix console.error --- npm/lib/exec.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/npm/lib/exec.js b/npm/lib/exec.js index d35979e..6876b75 100644 --- a/npm/lib/exec.js +++ b/npm/lib/exec.js @@ -19,7 +19,7 @@ function spawner(args) { console.info(chunk.toString('utf8')); }); runner.stderr.on('data', function(chunk) { - console.err(chunk.toString('utf8')); + console.error(chunk.toString('utf8')); }); runner.on('exit', function(code) { if (0 !== code) {