mirror of
https://github.com/gitpod-io/gitpod.git
synced 2025-12-08 17:36:30 +00:00
9 lines
435 B
Bash
Executable File
9 lines
435 B
Bash
Executable File
#!/bin/sh
|
|
|
|
PROTOC_INCLUDE="-I. -I $GOPATH/src/github.com/grpc-ecosystem/grpc-gateway/third_party/googleapis -I /usr/lib/protoc/include"
|
|
|
|
GO111MODULE=on go get github.com/golang/protobuf/protoc-gen-go
|
|
GO111MODULE=off go get github.com/grpc-ecosystem/grpc-gateway/protoc-gen-grpc-gateway
|
|
protoc $PROTOC_INCLUDE --go_out=plugins=grpc:go *.proto
|
|
protoc $PROTOC_INCLUDE --grpc-gateway_out=logtostderr=true,paths=source_relative:go *.proto
|