From b79130ca3502871f2d786f8c7e126311c90cdf57 Mon Sep 17 00:00:00 2001 From: Jesse Squires Date: Mon, 22 Jan 2018 14:47:20 -0800 Subject: [PATCH] Fix deadlink detection close #1059 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Summary: The directory is `.vendor/` **not** `vendor/` 😳 Closes https://github.com/Instagram/IGListKit/pull/1061 Differential Revision: D6778511 Pulled By: rnystrom fbshipit-source-id: 1384600b91f8071daaeb1ad71c24b7e9a730f9eb --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 466ffcc6..d6036114 100644 --- a/.travis.yml +++ b/.travis.yml @@ -47,7 +47,7 @@ script: - if [ $CHECK_MARKDOWN == "YES" ]; then npm install -g markdown-link-check; - find . -name "*.md" -not -path "./vendor/*" | while read filename; do + find . -name "*.md" -not -path "./.vendor/*" | while read filename; do echo "Searching $filename"; cat "$filename" | markdown-link-check; done