From 45802c19ec3f699ccfd46b50d3daa4502d59079d Mon Sep 17 00:00:00 2001 From: Shawn Smith Date: Tue, 22 Mar 2022 12:05:51 +0900 Subject: [PATCH] use latest staticcheck in lint target --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 5643c37..3e0d5dd 100644 --- a/Makefile +++ b/Makefile @@ -16,7 +16,7 @@ vet: go vet ./main.go staticcheck: - @[ -x "$(shell which staticcheck)" ] || go install honnef.co/go/tools/cmd/staticcheck + @[ -x "$(shell which staticcheck)" ] || go install honnef.co/go/tools/cmd/staticcheck@master staticcheck ./... test: