Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-pages.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 1 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 97852062..a4a9bee0 100644
--- a/Makefile
+++ b/Makefile
@@ -27,8 +27,7 @@ fmt:
go fmt ./... | awk '{ print "Please run go fmt"; exit 1 }'
vet:
- go get golang.org/x/tools/cmd/vet
- go vet
+ go tool vet *.go
lint:
go get github.com/golang/lint/golint