diff --git a/lychee-lib/src/types/input.rs b/lychee-lib/src/types/input.rs index bf9bda6fc1..229aca83d0 100644 --- a/lychee-lib/src/types/input.rs +++ b/lychee-lib/src/types/input.rs @@ -233,6 +233,10 @@ impl Input { for entry in WalkBuilder::new(path).standard_filters(gitignore).hidden(true).build() { let entry = entry?; + if self.is_excluded_path(&entry.path().to_path_buf()) { + continue; + } + match entry.file_type() { None => continue, Some(file_type) => {