diff options
| author | Markus Reiter | 2017-10-21 19:57:01 +0200 | 
|---|---|---|
| committer | Markus Reiter | 2017-10-24 19:39:40 +0200 | 
| commit | 23ec8e07d416a566e3bc2d1164390209c79cb602 (patch) | |
| tree | 3735df1cf412f658702d8d475ff8446739f6639c | |
| parent | 526299913fe757af28de9bad868635124b26e071 (diff) | |
| download | brew-23ec8e07d416a566e3bc2d1164390209c79cb602.tar.bz2 | |
Use `/` to join path.
| -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 7eb85ed97..1b1987717 100644 --- a/Library/Homebrew/formulary.rb +++ b/Library/Homebrew/formulary.rb @@ -422,7 +422,7 @@ module Formulary      CoreTap.instance.formula_dir/"#{name.to_s.downcase}.rb"    end -  def self.tap_paths(name, taps = Dir["#{HOMEBREW_LIBRARY}/Taps/*/*/"]) +  def self.tap_paths(name, taps = Dir[HOMEBREW_LIBRARY/"Taps/*/*/"])      name = name.to_s.downcase      taps.map do |tap|        Pathname.glob([ | 
