mirror of
https://github.com/dutchcoders/transfer.sh.git
synced 2020-11-18 19:53:40 -08: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
|
|
|