Merge pull request #702 from adamharrison/fix-project-ignores
Used basenames for ignore_files rather than full paths.
This commit is contained in:
commit
7b82d787c0
|
@ -100,7 +100,7 @@ local function get_project_file_info(root, file)
|
|||
if info then
|
||||
info.filename = strip_leading_path(file)
|
||||
return (info.size < config.file_size_limit * 1e6 and
|
||||
not common.match_pattern(info.filename, config.ignore_files)
|
||||
not common.match_pattern(common.basename(info.filename), config.ignore_files)
|
||||
and info)
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in New Issue