Skip to content

Commit

Permalink
exclude erlang/elixir build artifacts from ALL_DOCS (#276)
Browse files Browse the repository at this point in the history
  • Loading branch information
puckpuck authored Aug 9, 2022
1 parent 2fe2b52 commit 64a4edf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# All documents to be used in spell check.
ALL_DOCS := $(shell find . -type f -name '*.md' -not -path './.github/*' -not -path './node_modules/*' | sort)
ALL_DOCS := $(shell find . -type f -name '*.md' -not -path './.github/*' -not -path '*/node_modules/*' -not -path '*/_build/*' -not -path '*/deps/*' | sort)
PWD := $(shell pwd)

TOOLS_DIR := ./internal/tools
Expand Down

0 comments on commit 64a4edf

Please sign in to comment.