mirror of
https://github.com/dutchcoders/transfer.sh.git
synced 2024-12-02 17:10:18 +01:00
7 lines
151 B
Bash
Executable file
7 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
|
|
|