From 8544635a7e3d3db9f851ec5ddd39e592e92528c8 Mon Sep 17 00:00:00 2001 From: Peter Edge Date: Sat, 17 Feb 2018 23:53:33 +0100 Subject: [PATCH] Suppress printing all go get commands for linters --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 1ff4eb9..48f25fc 100644 --- a/Makefile +++ b/Makefile @@ -18,7 +18,7 @@ install: .PHONY: golint golint: - go get github.com/golang/lint/golint + @go get github.com/golang/lint/golint for file in $(SRCS); do \ golint $${file}; \ if [ -n "$$(golint $${file})" ]; then \ @@ -39,7 +39,7 @@ vet: .PHONY: errcheck: - go get github.com/kisielk/errcheck + @go get github.com/kisielk/errcheck errcheck $(PKGS) .PHONY: staticcheck