Skip to content

Commit

Permalink
fix: fix crash #297
Browse files Browse the repository at this point in the history
  • Loading branch information
CanadaHonk authored Mar 11, 2024
1 parent 1a97f22 commit 641b837
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion markdown-link-check
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,8 @@ function getInputs() {
}
}

const { ignore } = program.opts();

for (const filenameOrUrl of filenamesOrUrls) {
filenameForOutput = filenameOrUrl;
let baseUrl = '';
Expand Down Expand Up @@ -94,7 +96,7 @@ function getInputs() {

// skip paths given if it includes a path to ignore.
// todo: allow ignore paths to be glob or regex instead of just includes?
if (program.opts().ignore.some((ignorePath) => resolved.includes(ignorePath))) {
if (ignore && ignore.some((ignorePath) => resolved.includes(ignorePath))) {
continue;
}

Expand Down

0 comments on commit 641b837

Please sign in to comment.