blob: 9ee6b1e263c54e684fa11ef9365291303015e3f4 [file] [log] [blame]
#!/bin/sh
# generate .pb.go file from .proto file.
set -e
protoc --go_out=plugins=grpc:. test.proto
echo '//go:generate ./generate.sh
' >> test.pb.go