aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/mach.rb
diff options
context:
space:
mode:
Diffstat (limited to 'Library/Homebrew/mach.rb')
-rw-r--r--Library/Homebrew/mach.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/Library/Homebrew/mach.rb b/Library/Homebrew/mach.rb
index 7b9d4d345..d1f4540ec 100644
--- a/Library/Homebrew/mach.rb
+++ b/Library/Homebrew/mach.rb
@@ -100,14 +100,14 @@ module MachO
end
def dylib?
- mach_data.map{ |m| m.fetch :type }.include? :dylib
+ mach_data.any? { |m| m.fetch(:type) == :dylib }
end
def mach_o_executable?
- mach_data.map{ |m| m.fetch :type }.include? :executable
+ mach_data.any? { |m| m.fetch(:type) == :executable }
end
def mach_o_bundle?
- mach_data.map{ |m| m.fetch :type }.include? :bundle
+ mach_data.any? { |m| m.fetch(:type) == :bundle }
end
end