Skip to content

Commit

Permalink
Redirect stderr as well
Browse files Browse the repository at this point in the history
  • Loading branch information
Marcus Tomlinson committed Mar 28, 2021
1 parent a5dafa6 commit 1b979d2
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,9 @@ async function run() {
listeners: {
stdout: (data) => {
process.stdout.write(data.toString());
},
stderr: (data) => {
process.stdout.write(data.toString());
}
}
})
Expand Down

0 comments on commit 1b979d2

Please sign in to comment.