Skip to content

Commit ac6b821

Browse files
authored
fix: #76 accumulate stderr (#75)
1 parent 5359dab commit ac6b821

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lib/runner.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ class Runner {
7070
});
7171

7272
this.childProcess.stderr.on('data', (data) => {
73-
err = data.toString('utf8');
73+
err += data.toString("utf8"); // Max string size ~1GiB
7474
if (this.enableStdOut) {
7575
console.error(err);
7676
}

0 commit comments

Comments
 (0)