Skip to content
This repository has been archived by the owner on Jul 11, 2023. It is now read-only.

Commit

Permalink
Fix Stderr going to Stdout
Browse files Browse the repository at this point in the history
Closes #61
  • Loading branch information
mattlyons0 authored Feb 9, 2018
1 parent a8a6350 commit 8952b59
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rsync.js
Original file line number Diff line number Diff line change
Expand Up @@ -472,7 +472,7 @@ Rsync.prototype.output = function(stdout, stderr) {
this._outputHandlers.stdout = stdout;
}
if (typeof(stderr) === 'function') {
this._outputHandlers.stderr = stdout;
this._outputHandlers.stderr = stderr;
}

return this;
Expand Down

0 comments on commit 8952b59

Please sign in to comment.