mirror of
https://github.com/Instagram/IGListKit
synced 2026-05-23 09:18:29 +00:00
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:
parent
8dd464e712
commit
b79130ca35
1 changed files with 1 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue