From 028683efe61005f9ff4b1f04d86376f7d5eff205 Mon Sep 17 00:00:00 2001 From: Jordan Liggitt Date: Mon, 23 Jan 2023 09:13:01 -0500 Subject: [PATCH] Add missing proto path to kube::protoc::protoc invocation --- hack/lib/protoc.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/hack/lib/protoc.sh b/hack/lib/protoc.sh index 6b080084a92..5c1e9a372a1 100644 --- a/hack/lib/protoc.sh +++ b/hack/lib/protoc.sh @@ -69,6 +69,7 @@ function kube::protoc::protoc() { PATH="${gogopath}:${PATH}" protoc \ --proto_path="$(pwd -P)" \ --proto_path="${KUBE_ROOT}/vendor" \ + --proto_path="${KUBE_ROOT}/third_party/protobuf" \ --gogo_out=paths=source_relative,plugins=grpc:. \ api.proto )