Skip to content

Commit

Permalink
properly hook the stderr of the spawned process in ribosome.js
Browse files Browse the repository at this point in the history
  • Loading branch information
norswap committed Sep 3, 2018
1 parent 0bd5b32 commit b00c2ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ribosome.js
Original file line number Diff line number Diff line change
Expand Up @@ -634,7 +634,7 @@ if (!rnaopt) {
exec("node " + rnafile + " " + process.argv.slice(3).join(' '),
function(error, stdout, stderr) {
process.stdout.write(stdout);
process.stdout.write(stderr);
process.stderr.write(stderr);
fs.unlinkSync(rnafile);

if (error)
Expand Down

0 comments on commit b00c2ff

Please sign in to comment.