aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/formulary.rb
diff options
context:
space:
mode:
authorJack Nagel2014-04-05 22:03:33 -0500
committerJack Nagel2014-04-05 22:03:40 -0500
commit5c7ae48899cbd499438760f3e6a54bf5c37b732c (patch)
treec6c587f2d9af3e78c6b235d497e1ed082c8ee3b6 /Library/Homebrew/formulary.rb
parent9f4f8546253398e082bf14f44d604a85908574b6 (diff)
downloadhomebrew-5c7ae48899cbd499438760f3e6a54bf5c37b732c.tar.bz2
Drop readable? check since we don't do that for any other case
Diffstat (limited to 'Library/Homebrew/formulary.rb')
-rw-r--r--Library/Homebrew/formulary.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/formulary.rb b/Library/Homebrew/formulary.rb
index c57013900..9dc7289c3 100644
--- a/Library/Homebrew/formulary.rb
+++ b/Library/Homebrew/formulary.rb
@@ -188,7 +188,7 @@ class Formulary
end
formula_with_that_name = Formula.path(ref)
- if formula_with_that_name.file? and formula_with_that_name.readable?
+ if formula_with_that_name.file?
return StandardLoader.new(ref, formula_with_that_name)
end