make: Use `go install` instead of `go get` for installing tools (#1038)

pull/1076/head
Michal Rostecki 2 years ago committed by GitHub
parent f644103dc0
commit e197bae1dc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      Makefile

@ -199,7 +199,7 @@ HAS_GOLANGCI_VERSION := $(shell golangci-lint --version | grep "version $(PKG_GO
install-tools:
ifndef HAS_GOX
($(GO) get $(PKG_GOX))
($(GO) install $(PKG_GOX))
endif
ifndef HAS_GOLANGCI
(curl -sfL $(PKG_GOLANGCI_LINT_SCRIPT) | sh -s -- -b $(GOENVPATH)/bin v${PKG_GOLANGCI_LINT_VERSION})

Loading…
Cancel
Save