From c4dc40d0dbd7223923fc04d4b236e90c4ea85fbc Mon Sep 17 00:00:00 2001 From: Damien Elmes Date: Tue, 24 Dec 2019 19:49:55 +1000 Subject: [PATCH] ignore dot files and generated files when determining rust deps --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 9bdbd6bfa..d68fdb5e2 100644 --- a/Makefile +++ b/Makefile @@ -110,7 +110,7 @@ JSDEPS := $(patsubst ts/src/%.ts, web/%.js, $(TSDEPS)) # Rust source ###################### -RSDEPS := $(shell find rs -type f | grep -v target) +RSDEPS := $(shell find rs -type f | egrep -v 'target|/\.|proto.rs') # Building ######################