From 80111f931a4be6f257e4d5713ce9064f8cbb82f4 Mon Sep 17 00:00:00 2001 From: Andrey Butusov Date: Tue, 10 Sep 2024 10:50:01 +0300 Subject: [PATCH] Makefile: use `google.golang.org/protobuf` to protoc Use `google.golang.org/protobuf` instead of `github.com/golang/protobuf`. Signed-off-by: Andrey Butusov --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 13cceece17..eac1b61fb8 100644 --- a/Makefile +++ b/Makefile @@ -69,7 +69,7 @@ dep: protoc: @GOPRIVATE=github.com/nspcc-dev go mod vendor # Install specific version for protobuf lib - @go list -f '{{.Path}}/...@{{.Version}}' -m github.com/golang/protobuf | xargs go install -v + @go list -f '{{.Path}}/...@{{.Version}}' -m google.golang.org/protobuf | xargs go install -v @GOBIN=$(abspath $(BIN)) go install -mod=mod -v github.com/nspcc-dev/neofs-api-go/v2/util/protogen # Protoc generate @for f in `find . -type f -name '*.proto' -not -path './vendor/*'`; do \