diff options
| author | Jack Nagel | 2014-04-05 22:03:33 -0500 |
|---|---|---|
| committer | Jack Nagel | 2014-04-05 22:03:40 -0500 |
| commit | 686ab7ad7fb2473c992231df548f854d988056c9 (patch) | |
| tree | 62d3e081fe4f9ea11de32e5ae77a3406b869d2ea /Library | |
| parent | 757c8ade0ba98d0a1c235df77572780b03998228 (diff) | |
| download | brew-686ab7ad7fb2473c992231df548f854d988056c9.tar.bz2 | |
Drop readable? check since we don't do that for any other case
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Homebrew/formulary.rb | 2 |
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 |
