summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Noordhuis <info@bnoordhuis.nl>2020-04-22 10:48:22 +0200
committerMichaël Zasso <targos@protonmail.com>2020-05-04 14:23:23 +0200
commit82e459d9afe3db68198f8c6b8cfc1b819692dd01 (patch)
tree55082e0db46f1abc3387c22e9606ba57857e8e15
parent466213d726409a3376b3f183578383e442e4b3fb (diff)
downloadnode-new-82e459d9afe3db68198f8c6b8cfc1b819692dd01.tar.gz
doc: don't check links in tmp dirs
PR-URL: https://github.com/nodejs/node/pull/32996 Reviewed-By: Gerhard Stöbich <deb2001-github@yahoo.de> Reviewed-By: Yongsheng Zhang <zyszys98@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net>
-rw-r--r--tools/doc/checkLinks.js1
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/doc/checkLinks.js b/tools/doc/checkLinks.js
index 60a3f65e5e..00697cc01c 100644
--- a/tools/doc/checkLinks.js
+++ b/tools/doc/checkLinks.js
@@ -27,6 +27,7 @@ function findMarkdownFilesRecursively(dirPath) {
if (
entry.isDirectory() &&
entry.name !== 'api' &&
+ entry.name !== 'tmp' &&
entry.name !== 'fixtures' &&
entry.name !== 'changelogs' &&
entry.name !== 'deps' &&