You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
441 B

  1. #!/usr/bin/env bash
  2. set -eo pipefail
  3. proto_dirs=$(find . -path ./third_party -prune -o -name '*.proto' -print0 | xargs -0 -n1 dirname | sort | uniq)
  4. for dir in $proto_dirs; do
  5. protoc \
  6. -I. \
  7. --gogo_out=Mgoogle/protobuf/timestamp.proto=github.com/golang/protobuf/ptypes/timestamp,Mgoogle/protobuf/duration.proto=github.com/golang/protobuf/ptypes/duration,plugins=grpc,paths=source_relative:. \
  8. $(find "${dir}" -name '*.proto')
  9. done