From 7dd4980fe43459e9b5efb81ebb286837b7b9514a Mon Sep 17 00:00:00 2001 From: Oliver Tonnhofer Date: Wed, 15 Nov 2017 14:18:48 +0100 Subject: [PATCH] do not build protobuf files in vendor/ --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 7bdfa64..772e96d 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ .PHONY: test all build clean test test-system test-unit update_version docs -PROTOFILES=$(shell find . -name \*.proto) +PROTOFILES=$(shell find . -name \*.proto -not -path ./vendor/\*) PBGOFILES=$(patsubst %.proto,%.pb.go,$(PROTOFILES)) GOFILES=$(shell find . \( -name \*.go ! -name version.go \) )