Skip to content

Commit 6e81d03

Browse files
author
Philipp Heckel
committed
I'm going insane
1 parent d948027 commit 6e81d03

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -69,12 +69,12 @@ vet:
6969
$(GO) vet ./...
7070

7171
lint:
72-
which golint || $(GO) install golang.org/x/lint/golint
72+
which golint || $(GO) install golang.org/x/lint/golint@latest
7373
$(GO) list ./... | grep -v /vendor/ | xargs -L1 golint -set_exit_status
7474

7575
staticcheck: .PHONY
7676
rm -rf build/staticcheck
77-
which staticcheck || go install honnef.co/go/tools/cmd/staticcheck
77+
which staticcheck || $(GO) install honnef.co/go/tools/cmd/staticcheck@latest
7878
mkdir -p build/staticcheck
7979
ln -s "$(GO)" build/staticcheck/go
8080
PATH="$(PWD)/build/staticcheck:$(PATH)" staticcheck ./...

0 commit comments

Comments
 (0)