Skip to content

Commit

Permalink
tools: ignore build folder when checking links
Browse files Browse the repository at this point in the history
We checkout build as a subdirectory as part of CI and
if you run `make test` instead of `make test-ci` you get
loads of errors about markdown link breaks. Ignore this
directory as we don't need to examine another repo
  • Loading branch information
Ash Cripps committed Sep 23, 2020
1 parent 3b10f7f commit 2c55cc4
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions tools/doc/checkLinks.js
Expand Up @@ -27,6 +27,7 @@ function findMarkdownFilesRecursively(dirPath) {
if (
entry.isDirectory() &&
entry.name !== 'api' &&
entry.name !== 'build' &&
entry.name !== 'changelogs' &&
entry.name !== 'deps' &&
entry.name !== 'fixtures' &&
Expand Down

0 comments on commit 2c55cc4

Please sign in to comment.