From 686ab7ad7fb2473c992231df548f854d988056c9 Mon Sep 17 00:00:00 2001 From: Jack Nagel Date: Sat, 5 Apr 2014 22:03:33 -0500 Subject: [PATCH] Drop readable? check since we don't do that for any other case --- Library/Homebrew/formulary.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Library/Homebrew/formulary.rb b/Library/Homebrew/formulary.rb index c57013900d..9dc7289c30 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