You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
tb.controller-gen: $(TB_CONTROLLER_GEN) ## Download controller-gen locally if necessary.
24
26
$(TB_CONTROLLER_GEN): $(TB_LOCALBIN)
25
27
test -s $(TB_LOCALBIN)/controller-gen || GOBIN=$(TB_LOCALBIN) go install sigs.k8s.io/controller-tools/cmd/controller-gen@$(TB_CONTROLLER_GEN_VERSION)
28
+
.PHONY: tb.golangci-lint
29
+
tb.golangci-lint: $(TB_GOLANGCI_LINT) ## Download golangci-lint locally if necessary.
30
+
$(TB_GOLANGCI_LINT): $(TB_LOCALBIN)
31
+
test -s $(TB_LOCALBIN)/golangci-lint || GOBIN=$(TB_LOCALBIN) go install github.com/golangci/golangci-lint/v2/cmd/golangci-lint@$(TB_GOLANGCI_LINT_VERSION)
26
32
.PHONY: tb.semver
27
33
tb.semver: $(TB_SEMVER) ## Download semver locally if necessary.
tb.controller-gen: $(TB_CONTROLLER_GEN) ## Download controller-gen locally if necessary.
27
30
$(TB_CONTROLLER_GEN): $(TB_LOCALBIN)
28
31
test -s $(TB_LOCALBIN)/controller-gen || GOBIN=$(TB_LOCALBIN) go install sigs.k8s.io/controller-tools/cmd/controller-gen@$(TB_CONTROLLER_GEN_VERSION)
32
+
.PHONY: tb.golangci-lint
33
+
tb.golangci-lint: $(TB_GOLANGCI_LINT) ## Download golangci-lint locally if necessary.
34
+
$(TB_GOLANGCI_LINT): $(TB_LOCALBIN)
35
+
test -s $(TB_LOCALBIN)/golangci-lint || GOBIN=$(TB_LOCALBIN) go install github.com/golangci/golangci-lint/v2/cmd/golangci-lint@$(TB_GOLANGCI_LINT_VERSION)
29
36
.PHONY: tb.semver
30
37
tb.semver: $(TB_SEMVER) ## Download semver locally if necessary.
0 commit comments