From 9850f6d03c1263a7fbdf3864484e69d43ae3ab28 Mon Sep 17 00:00:00 2001 From: thinkerou Date: Sat, 30 Nov 2019 21:47:19 +0800 Subject: [PATCH] Update Makefile --- Makefile | 9 --------- 1 file changed, 9 deletions(-) diff --git a/Makefile b/Makefile index e69dbd8b..f3a72128 100644 --- a/Makefile +++ b/Makefile @@ -45,23 +45,14 @@ vet: .PHONY: lint lint: - @hash golint > /dev/null 2>&1; if [ $$? -ne 0 ]; then \ - $(GO) get -u golang.org/x/lint/golint; \ - fi for PKG in $(PACKAGES); do golint -set_exit_status $$PKG || exit 1; done; .PHONY: misspell-check misspell-check: - @hash misspell > /dev/null 2>&1; if [ $$? -ne 0 ]; then \ - $(GO) get -u github.com/client9/misspell/cmd/misspell; \ - fi misspell -error $(GOFILES) .PHONY: misspell misspell: - @hash misspell > /dev/null 2>&1; if [ $$? -ne 0 ]; then \ - $(GO) get -u github.com/client9/misspell/cmd/misspell; \ - fi misspell -w $(GOFILES) .PHONY: tools