7 lines
209 B
Bash
7 lines
209 B
Bash
#!/bin/bash
|
|
|
|
# You might need to go get -v github.com/gogo/protobuf/...
|
|
|
|
protos=${GOPATH-$HOME/go}/src/github.com/dgraph-io/badger/pb
|
|
pushd $protos > /dev/null
|
|
protoc --gofast_out=plugins=grpc:. -I=. pb.proto
|