diff options
author | portix <portix@gmx.net> | 2013-06-01 01:17:40 +0200 |
---|---|---|
committer | portix <portix@gmx.net> | 2013-06-01 01:17:40 +0200 |
commit | ce5d278454826511b978bbfff21864ae7523db6d (patch) | |
tree | 28dde51652dee5e98e846fbd4c28ab8db1819ef2 | |
parent | 36a0eca41350500934f02704f90c7549ade71efe (diff) | |
download | dwb-ce5d278454826511b978bbfff21864ae7523db6d.zip |
Fixing wrong scope in system.spawn
-rw-r--r-- | scripts/lib/system.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/lib/system.js b/scripts/lib/system.js index feca7fb0..c9b87028 100644 --- a/scripts/lib/system.js +++ b/scripts/lib/system.js @@ -17,7 +17,7 @@ var ret; stderr = response; if (onStderr) - ret = onStderr.call(onStdout, response); + ret = onStderr.call(onStderr, response); return ret; }, stdin, environ, toStdin).then( |