Skip to content

Commit

Permalink
lib: luvit: uv: fix setup of stdout/stderr
Browse files Browse the repository at this point in the history
This is an obvious fat finger by me. I was probably so excited to have
Windows tests passing that I just committed it! :)
  • Loading branch information
philips committed Jul 9, 2012
1 parent 162231e commit 82b48b0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/luvit/uv.lua
Expand Up @@ -327,9 +327,9 @@ function Process:initialize(command, args, options)
self.stdin = Pipe:new(nil)
self.stdin:open(0)
self.stdout = Pipe:new(nil)
self.stdin:open(1)
self.stdout:open(1)
self.stderr = Pipe:new(nil)
self.stdin:open(2)
self.stderr:open(2)
args = args or {}
options = options or {}

Expand Down

0 comments on commit 82b48b0

Please sign in to comment.