Fix deadlink detection close #1059

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
This commit is contained in:
Jesse Squires 2018-01-22 14:47:20 -08:00 committed by Facebook Github Bot
parent 8dd464e712
commit b79130ca35

View file

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