Skip to content

Commit

Permalink
Makefile: update go-acc and linter versions
Browse files Browse the repository at this point in the history
  • Loading branch information
yyforyongyu committed Aug 20, 2024
1 parent 5843b66 commit 4031912
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ GO_BIN := ${GOPATH}/bin
LINT_BIN := $(GO_BIN)/golangci-lint
GOACC_BIN := $(GO_BIN)/go-acc

LINT_COMMIT := v1.18.0
GOACC_COMMIT := 80342ae2e0fcf265e99e76bcc4efd022c7c3811b
LINT_VERSION := v1.60.1
GOACC_VERSION := v0.2.8

DEPGET := cd /tmp && go get -v
DEPGET := cd /tmp && go install -v
GOBUILD := go build -v
GOINSTALL := go install -v
DEV_TAGS := rpctest
Expand Down Expand Up @@ -51,11 +51,11 @@ all: build check

$(LINT_BIN):
@$(call print, "Fetching linter")
$(DEPGET) $(LINT_PKG)@$(LINT_COMMIT)
$(DEPGET) $(LINT_PKG)@$(LINT_VERSION)

$(GOACC_BIN):
@$(call print, "Fetching go-acc")
$(DEPGET) $(GOACC_PKG)@$(GOACC_COMMIT)
$(DEPGET) $(GOACC_PKG)@$(GOACC_VERSION)

#? goimports: Install goimports
goimports:
Expand Down

0 comments on commit 4031912

Please sign in to comment.