[editorial] Generate ALL_DOCS using find only, no grep -v (#2322)
This commit is contained in:
parent
8c9de82151
commit
8da26373a6
2
Makefile
2
Makefile
|
|
@ -1,5 +1,5 @@
|
|||
# All documents to be used in spell check.
|
||||
ALL_DOCS := $(shell find . -name '*.md' -not -path './.github/*' -type f | grep -v ^./node_modules | sort)
|
||||
ALL_DOCS := $(shell find . -type f -name '*.md' -not -path './.github/*' -not -path './node_modules/*' | sort)
|
||||
PWD := $(shell pwd)
|
||||
|
||||
TOOLS_DIR := ./internal/tools
|
||||
|
|
|
|||
Loading…
Reference in New Issue