Skip to content
Snippets Groups Projects
Commit d3636442 authored by JCount's avatar JCount Committed by GitHub
Browse files

Merge pull request #2461 from hsbt/workaround-downcase-with-pathname

formulary: Workaround for method missing for downcase on Pathname object
parents 4d6e3199 b7ce111d
No related branches found
No related tags found
No related merge requests found
......@@ -402,7 +402,7 @@ module Formulary
end
def self.tap_paths(name, taps = Dir["#{HOMEBREW_LIBRARY}/Taps/*/*/"])
name = name.downcase
name = name.to_s.downcase
taps.map do |tap|
Pathname.glob([
"#{tap}Formula/#{name}.rb",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment