Merge pull request #1268 from Homebrew/revert-1267-perf/keg-text-executable

Revert "keg_relocate: left out text_executable? check in #1258"
This commit is contained in:
Mike McQuaid 2016-10-12 11:30:28 +01:00 committed by GitHub
commit 5e90c5a7a4

View File

@ -79,7 +79,6 @@ class Keg
stdin_data: files.join("\0")) stdin_data: files.join("\0"))
output.each_line.with_index do |line, i| output.each_line.with_index do |line, i|
next unless line.include?("text") next unless line.include?("text")
next unless files[i].text_executable?
text_files << files[i] text_files << files[i]
end end
end end