do not build protobuf files in vendor/

master
Oliver Tonnhofer 2017-11-15 14:18:48 +01:00
parent a5cbe077be
commit 7dd4980fe4
1 changed files with 1 additions and 1 deletions

View File

@ -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 \) )