Skip to content
Snippets Groups Projects
Commit c05df4f3 authored by Nicolas Noble's avatar Nicolas Noble Committed by GitHub
Browse files

Merge pull request #7681 from murgatroid99/node_tools_integrate_plugin

Make Node grpc-tools protoc automatically call the plugin
parents 9fd2143f 80db7f8c
No related branches found
No related tags found
No related merge requests found
...@@ -47,7 +47,11 @@ var exe_ext = process.platform === 'win32' ? '.exe' : ''; ...@@ -47,7 +47,11 @@ var exe_ext = process.platform === 'win32' ? '.exe' : '';
var protoc = path.resolve(__dirname, 'protoc' + exe_ext); var protoc = path.resolve(__dirname, 'protoc' + exe_ext);
var child_process = execFile(protoc, process.argv.slice(2), function(error, stdout, stderr) { var plugin = path.resolve(__dirname, 'grpc_node_plugin' + exe_ext);
var args = ['--plugin=protoc-gen-grpc=' + plugin].concat(process.argv.slice(2));
var child_process = execFile(protoc, args, function(error, stdout, stderr) {
if (error) { if (error) {
throw error; throw error;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment