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
if [[ $$(golangci-lint --version |awk '{print $$4}') ==$(GOLANGCI_LINT_VERSION) ]];thenecho"current installed version is actual to $(GOLANGCI_LINT_VERSION)";elseecho"current version is not actual, please use $(GOLANGCI_LINT_VERSION)";exit 1;fi
20
23
@echo running linter
21
24
golangci-lint run -v
22
25
26
+
lint-check-version:
27
+
@echo check linter version
28
+
@if [[ $(GO_LINT)== v$(GOLANGCI_LINT_VERSION) ]];thenecho"current installed version is actual to $(GOLANGCI_LINT_VERSION)";elseecho"current version $(GO_LINT) is not actual, please use $(GOLANGCI_LINT_VERSION)";exit 1;fi
0 commit comments