mirror of
https://github.com/ankitects/anki.git
synced 2025-09-20 06:52:21 -04:00
ignore dot files and generated files when determining rust deps
This commit is contained in:
parent
d45ea2b273
commit
c4dc40d0db
1 changed files with 1 additions and 1 deletions
2
Makefile
2
Makefile
|
@ -110,7 +110,7 @@ JSDEPS := $(patsubst ts/src/%.ts, web/%.js, $(TSDEPS))
|
||||||
# Rust source
|
# Rust source
|
||||||
######################
|
######################
|
||||||
|
|
||||||
RSDEPS := $(shell find rs -type f | grep -v target)
|
RSDEPS := $(shell find rs -type f | egrep -v 'target|/\.|proto.rs')
|
||||||
|
|
||||||
# Building
|
# Building
|
||||||
######################
|
######################
|
||||||
|
|
Loading…
Reference in a new issue