12 lines
401 B
Bash
12 lines
401 B
Bash
cd proto
|
|
protoc -I. -I/usr/include -I$GOPATH/src/github.com/grpc-ecosystem/grpc-gateway/third_party/googleapis \
|
|
--go_out=plugins=grpc:.. \
|
|
*.proto
|
|
|
|
protoc -I/usr/include -I. \
|
|
-I$GOPATH/src -I$GOPATH/src/github.com/grpc-ecosystem/grpc-gateway/third_party/googleapis \
|
|
--grpc-gateway_out=logtostderr=true:.. \
|
|
*.proto
|
|
|
|
# protoc --go_out=plugins=grpc:.. *.proto
|
|
cd .. |