Skip to content
Snippets Groups Projects
Unverified Commit b7ce111d authored by SHIBATA Hiroshi's avatar SHIBATA Hiroshi
Browse files

formulary: Workaround for method missing for downcase on Pathname object.

parent d84655ef
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