[editorial] Generate ALL_DOCS using find only, no grep -v (#2322)

This commit is contained in:
Patrice Chalin 2022-02-08 11:25:48 -05:00 committed by GitHub
parent 8c9de82151
commit 8da26373a6
1 changed files with 1 additions and 1 deletions

View File

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