mirror of
https://github.com/fnproject/fn.git
synced 2022-10-28 21:29:17 +03:00
8 lines
151 B
Bash
Executable File
8 lines
151 B
Bash
Executable File
#!/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
|
|
|