This commit is contained in:
Anupam Mediratta 2026-08-15 16:41:42 -04:00 committed by GitHub
commit 3ef344c115
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -46,7 +46,7 @@ ignored_exts = %w[
]
EXTSOURCES =
`git ls-files -z #{root}`.split("\x0")
IO.popen(["git", "ls-files", "-z", root.to_s], &:read).split("\x0")
.collect {|file| Pathname(file)}
.reject {|file|
ignored_exts.include?(file.extname) ||