From 02ceab04e7cc2a5472bc726340c1c1e3a6985c3f 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 ######################