From 787d72cf52df995cb6e2c19330db85c51d79ad03 Mon Sep 17 00:00:00 2001 From: 9seconds Date: Tue, 5 Oct 2021 10:50:58 +0300 Subject: [PATCH] Use install, not go get --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index b3aed6e..60f1424 100644 --- a/Makefile +++ b/Makefile @@ -83,15 +83,15 @@ install-tools-lint: .bin .PHONY: install-tools-godoc install-tools-godoc: .bin - @$(GOTOOL) go get -u golang.org/x/tools/cmd/godoc + @$(GOTOOL) go install golang.org/x/tools/cmd/godoc@latest .PHONY: install-tools-gofumpt install-tools-gofumpt: .bin - @$(GOTOOL) go get -u mvdan.cc/gofumpt + @$(GOTOOL) go install mvdan.cc/gofumpt@latest .PHONY: goreleaser install-tools-goreleaser: .bin - @$(GOTOOL) go get -u github.com/goreleaser/goreleaser + @$(GOTOOL) go install github.com/goreleaser/goreleaser@latest .PHONY: update-deps update-deps: