From ea6bc8e89283381eb5a4bb0574b29a8f84d6df09 Mon Sep 17 00:00:00 2001 From: Leonard Lyubich Date: Tue, 28 Sep 2021 18:22:02 +0300 Subject: [PATCH] [#860] Makefile: use protoc-gen-go-grpc in protoc target Signed-off-by: Leonard Lyubich --- Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index e2901bbc..66f9ee8c 100644 --- a/Makefile +++ b/Makefile @@ -71,7 +71,9 @@ protoc: echo "⇒ Processing $$f "; \ protoc \ --proto_path=.:./vendor:/usr/local/include \ - --go_out=plugins=grpc,paths=source_relative:. $$f; \ + --go_out=. --go_opt=paths=source_relative \ + --go-grpc_opt=require_unimplemented_servers=false \ + --go-grpc_out=. --go-grpc_opt=paths=source_relative $$f; \ done rm -rf vendor