1
0
mirror of https://github.com/go-gitea/git.git synced 2026-02-05 15:45:40 +01:00

fix golint path. (#131)

This commit is contained in:
Bo-Yi Wu
2018-10-18 10:15:04 +08:00
committed by GitHub
parent 6ef79e80b3
commit ca75f901ad

View File

@@ -27,7 +27,7 @@ vet:
.PHONY: lint
lint:
@which golint > /dev/null; if [ $$? -ne 0 ]; then \
go get -u github.com/golang/lint/golint; \
go get -u golang.org/x/lint/golint; \
fi
for PKG in $(PACKAGES); do golint -set_exit_status $$PKG || exit 1; done;