mirror of
https://github.com/lightninglabs/aperture.git
synced 2025-12-25 13:04:20 +01:00
9 lines
212 B
Bash
Executable File
9 lines
212 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
protoc -I/usr/local/include -I. \
|
|
-I$GOPATH/src/github.com/grpc-ecosystem/grpc-gateway/third_party/googleapis \
|
|
--go_out=plugins=grpc,paths=source_relative:. \
|
|
hello.proto
|