From 3cbf44058db3a6f74b01db217937edd9a18c884f Mon Sep 17 00:00:00 2001 From: Anton Kaliaev Date: Thu, 9 Nov 2017 17:16:06 -0500 Subject: [PATCH] no need for protoc in make all since we have types.pb.go generated --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index c82e88540..06efbf344 100644 --- a/Makefile +++ b/Makefile @@ -4,7 +4,7 @@ GOTOOLS = \ github.com/alecthomas/gometalinter \ github.com/ckaznocha/protoc-gen-lint -all: protoc install test +all: install test PACKAGES=$(shell go list ./... | grep -v '/vendor/')