From 371dd09bf5bf53b0ec2cf2ed846e8481973b4347 Mon Sep 17 00:00:00 2001 From: Alex Vanin Date: Tue, 19 Oct 2021 19:34:30 +0300 Subject: [PATCH] [#176] Makefile: Use google-hosted repository of protobuf GitHub-hosted version considered as deprecated Signed-off-by: Alex Vanin --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index c8775ee..e4db0f2 100644 --- a/Makefile +++ b/Makefile @@ -41,7 +41,7 @@ imports: 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 get -v + @go list -f '{{.Path}}/...@{{.Version}}' -m google.golang.org/protobuf | xargs go get -v # Protoc generate @for f in `find . -type f -name '*.proto' -not -path './vendor/*'`; do \ echo "⇒ Processing $$f "; \