mirror of
https://github.com/dutchcoders/transfer.sh.git
synced 2024-12-03 17:30:18 +01:00
8 lines
151 B
Bash
8 lines
151 B
Bash
|
#!/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
|
||
|
|