We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 96d531f commit aa9e0beCopy full SHA for aa9e0be
Makefile
@@ -57,7 +57,8 @@ pkg/install:
57
58
.PHONY: tools
59
tools: ## Install tools
60
- @cd tools; \
+ cd tools; \
61
+ go mod vendor -v; \
62
for t in $$(go list -f '{{ join .Imports " " }}' -tags=tools); do \
63
GOBIN=${CURDIR}/bin go install -v -x -mod=vendor "$${t}" > /dev/null 2>&1; \
64
done
@@ -97,7 +98,7 @@ lint: lint/golangci-lint ## Run all linters.
97
98
.PHONY: lint/golangci-lint
99
lint/golangci-lint: tools .golangci.yml ## Run golangci-lint.
100
$(call target)
- @golangci-lint run $(strip ${GO_LINT_FLAGS}) ./...
101
+ @${TOOLS_BIN}/golangci-lint run $(strip ${GO_LINT_FLAGS}) ./...
102
103
104
##@ clean
0 commit comments