Skip to content

Commit

Permalink
Merge pull request #274 from luvit/fixup-Process-stdout-stderr-setup
Browse files Browse the repository at this point in the history
lib: luvit: uv: fix setup of stdout/stderr
  • Loading branch information
creationix committed Jul 10, 2012
2 parents 162231e + 82b48b0 commit 4e839e1
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 4e839e1

Please sign in to comment.