diff options
author | murgatroid99 <mlumish@google.com> | 2016-05-10 17:56:29 -0700 |
---|---|---|
committer | murgatroid99 <mlumish@google.com> | 2016-05-10 17:56:29 -0700 |
commit | 8291274e0e3f1a3d79aea3290cdbd7070eba8896 (patch) | |
tree | 53efdd6a150fa175ea3612c6f31ada0bdc3dba82 /src/node/tools/bin | |
parent | 87f9e660f1e5ee85768e809aeee070e54f4e0b4c (diff) |
Fixed variable
Diffstat (limited to 'src/node/tools/bin')
-rwxr-xr-x | src/node/tools/bin/protoc.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/node/tools/bin/protoc.js b/src/node/tools/bin/protoc.js index 3bd1b84ffe..53fc5dc428 100755 --- a/src/node/tools/bin/protoc.js +++ b/src/node/tools/bin/protoc.js @@ -47,7 +47,7 @@ var exe_ext = process.platform === 'win32' ? '.exe' : ''; var protoc = path.resolve(__dirname, 'protoc' + exe_ext); -execFile(protoc, process.argv.slice(2), function(error, stdout, stderr) { +var child_process = execFile(protoc, process.argv.slice(2), function(error, stdout, stderr) { if (error) { throw error; } |