10 lines
390 B
Bash
Executable File
10 lines
390 B
Bash
Executable File
#!/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')
|
|
|
|
for PROTO in $PROTOS; do
|
|
echo $PROTO
|
|
protoc -I${GOPATH}/src/github.com/grpc-ecosystem/grpc-gateway/third_party/googleapis -I./ -I$(dirname $PROTO) --go_out=plugins=grpc,paths=source_relative:. --micro_out=paths=source_relative:. $PROTO
|
|
done
|