From 2d3138fb9274c21cface4a0f57ee7be7f348b49b Mon Sep 17 00:00:00 2001 From: Thomas Stromberg Date: Fri, 13 Sep 2019 14:42:56 -0700 Subject: [PATCH] Update lint-ci rule --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 5c7033aeb9..f869e71e65 100755 --- a/Makefile +++ b/Makefile @@ -331,8 +331,8 @@ lint: pkg/minikube/assets/assets.go pkg/minikube/translate/translations.go out/l # lint-ci is slower version of lint and is meant to be used in ci (travis) to avoid out of memory leaks. .PHONY: lint-ci -lint-ci: pkg/minikube/assets/assets.go pkg/minikube/translate/translations.go out/linters/golangci-lint - GOGC=${GOLINT_GOGC} ./out/linters/golangci-lint run \ +lint-ci: pkg/minikube/assets/assets.go pkg/minikube/translate/translations.go out/linters/golangci-lint-$(GOLINT_VERSION) + GOGC=${GOLINT_GOGC} ./out/linters/golangci-lint-$(GOLINT_VERSION) run \ --concurrency ${GOLINT_JOBS} ${GOLINT_OPTIONS} ./... .PHONY: reportcard