Created
December 24, 2018 09:57
-
-
Save smallnest/dfd4142fa74480174af099a4f03f2453 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash -e | |
| protobuf_directories=$(find . -not -path ./.git/ -not -path ./.idea/ -type d -name "pb") | |
| googleapis_path=$(go list -m -f '{{.Dir}}' github.com/googleapis/googleapis) | |
| while read -r p; do | |
| echo "generating protobuf for $p" | |
| protoc -I. -I$googleapis_path --go_out=plugins=grpc:. $p/*.proto | |
| done <<< "$protobuf_directories" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment