summaryrefslogtreecommitdiff
path: root/tools/protobuf/compile.sh
blob: f669fe0b31b8bc456d9b17adfa1ea8fa72a0374a (plain)
1
2
3
4
5
6
7
8
9
10
#!/usr/bin/env sh
DEPS=$(find api -type f -name "*.proto")
protoc --proto_path=./ \
  --proto_path=third_party/googleapis \
  --proto_path=third_party/grpc-proto \
  --go_out=. \
  --go_opt=paths=source_relative \
  --go-grpc_out=. \
  --go-grpc_opt=paths=source_relative \
  "$DEPS"