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.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)
29
+
tb.golangci-lint: ## Download golangci-lint locally if necessary.
30
+
@test -s $(TB_GOLANGCI_LINT)||\
31
+
GOBIN=$(TB_LOCALBIN) go install github.com/golangci/golangci-lint/v2/cmd/golangci-lint@$(TB_GOLANGCI_LINT_VERSION)
32
32
.PHONY: tb.goreleaser
33
-
tb.goreleaser: $(TB_GORELEASER)## Download goreleaser locally if necessary.
34
-
$(TB_GORELEASER): $(TB_LOCALBIN)
35
-
test -s $(TB_LOCALBIN)/goreleaser ||GOBIN=$(TB_LOCALBIN) go install github.com/goreleaser/goreleaser/v2@$(TB_GORELEASER_VERSION)
33
+
tb.goreleaser: ## Download goreleaser locally if necessary.
34
+
@test -s $(TB_GORELEASER)||\
35
+
GOBIN=$(TB_LOCALBIN) go install github.com/goreleaser/goreleaser/v2@$(TB_GORELEASER_VERSION)
36
36
.PHONY: tb.mockgen
37
-
tb.mockgen: $(TB_MOCKGEN)## Download mockgen locally if necessary.
38
-
$(TB_MOCKGEN): $(TB_LOCALBIN)
39
-
test -s $(TB_LOCALBIN)/mockgen ||GOBIN=$(TB_LOCALBIN) go install go.uber.org/mock/mockgen@$(TB_MOCKGEN_VERSION)
37
+
tb.mockgen: ## Download mockgen locally if necessary.
38
+
@test -s $(TB_MOCKGEN)||\
39
+
GOBIN=$(TB_LOCALBIN) go install go.uber.org/mock/mockgen@$(TB_MOCKGEN_VERSION)
40
40
.PHONY: tb.semver
41
-
tb.semver: $(TB_SEMVER)## Download semver locally if necessary.
42
-
$(TB_SEMVER): $(TB_LOCALBIN)
43
-
test -s $(TB_LOCALBIN)/semver ||GOBIN=$(TB_LOCALBIN) go install github.com/bakito/semver@$(TB_SEMVER_VERSION)
41
+
tb.semver: ## Download semver locally if necessary.
42
+
@test -s $(TB_SEMVER)||\
43
+
GOBIN=$(TB_LOCALBIN) go install github.com/bakito/semver@$(TB_SEMVER_VERSION)
0 commit comments