From 133cd011f0d89beba5b465d166b229639edd47fd Mon Sep 17 00:00:00 2001 From: Evgenii Stratonikov Date: Fri, 12 Nov 2021 10:57:42 +0300 Subject: [PATCH] Makefile: use `go install` instead of `go get` Signed-off-by: Evgenii Stratonikov --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index e4db0f2..b89e274 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 google.golang.org/protobuf | xargs go get -v + @go list -f '{{.Path}}/...@{{.Version}}' -m google.golang.org/protobuf | xargs go install -v # Protoc generate @for f in `find . -type f -name '*.proto' -not -path './vendor/*'`; do \ echo "⇒ Processing $$f "; \