From a027f3dbf4457b08255b743fe8fc2deb757048a3 Mon Sep 17 00:00:00 2001 From: Chitoku Date: Thu, 11 Aug 2022 17:46:57 +0900 Subject: [PATCH] Use go install to set up promu --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 8c8c2f5b..cb5b9728 100644 --- a/Makefile +++ b/Makefile @@ -35,7 +35,7 @@ test: deps promu: @GOOS=$(shell uname -s | tr A-Z a-z) \ GOARCH=$(subst x86_64,amd64,$(patsubst i%86,386,$(shell uname -m))) \ - $(GO) get -u github.com/prometheus/promu + $(GO) install github.com/prometheus/promu@v0.13.0 build: promu @echo ">> building binaries"