16 lines
681 B
Bash
16 lines
681 B
Bash
|
#!/bin/bash -e
|
||
|
|
||
|
find . -type f -name '*.pb.*.go' -o -name '*.pb.go' -a ! -name 'message.pb.go' -delete
|
||
|
PROTOS=$(find . -type f -name '*.proto' | grep -v proto/google/api)
|
||
|
|
||
|
mkdir -p proto/google/api
|
||
|
curl -s -o proto/google/api/annotations.proto -L https://raw.githubusercontent.com/googleapis/googleapis/master/google/api/annotations.proto
|
||
|
curl -s -o proto/google/api/http.proto -L https://raw.githubusercontent.com/googleapis/googleapis/master/google/api/http.proto
|
||
|
|
||
|
for PROTO in $PROTOS; do
|
||
|
echo $PROTO
|
||
|
protoc -I./proto -I. -I$(dirname $PROTO) --go-grpc_out=paths=source_relative:. --go_out=paths=source_relative:. --micro_out=paths=source_relative:. $PROTO
|
||
|
done
|
||
|
|
||
|
rm -r proto
|