From 44767d6a162b668d814cecabc8d4b17a145949b9 Mon Sep 17 00:00:00 2001 From: aaron-congo Date: Fri, 9 Feb 2024 14:38:04 -0800 Subject: [PATCH] Update make install-tools to parse tools.go --- go/Makefile | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/go/Makefile b/go/Makefile index 8368275948..cd6bedcfbf 100644 --- a/go/Makefile +++ b/go/Makefile @@ -1,7 +1,5 @@ -install-dependencies: - go install github.com/DarkDrim/go-test-report@v1.5.0 - go install google.golang.org/protobuf/cmd/protoc-gen-go@v1.32.0 - go install honnef.co/go/tools/cmd/staticcheck@2022.1 +install-tools: + @cat tools.go | grep _ | awk -F'"' '{print $$2}' | xargs -tI % go install % build: build-glide-core build-glide-client generate-protobuf go build ./...