9f24049bbc
In this commit, we add a new proto generation script to match the one in the main lnrpc package. This script differs, as we don't need to generate the REST proxy stuff (for now).
7 lines
121 B
Bash
Executable File
7 lines
121 B
Bash
Executable File
#!/bin/sh
|
|
|
|
protoc -I/usr/local/include -I. \
|
|
-I$GOPATH/src \
|
|
--go_out=plugins=grpc:. \
|
|
signer.proto
|