ARGV: don't downcase bottle filenames

Fixes Homebrew/homebrew#42470.
This commit is contained in:
Misty De Meo 2015-08-05 09:51:37 -07:00
parent 4f549da115
commit 176e55386c

View File

@ -213,9 +213,13 @@ module HomebrewArgvExtension
end end
def downcased_unique_named def downcased_unique_named
# Only lowercase names, not paths or URLs # Only lowercase names, not paths, bottle filenames or URLs
@downcased_unique_named ||= named.map do |arg| @downcased_unique_named ||= named.map do |arg|
arg.include?("/") ? arg : arg.downcase if arg.include?("/") || arg.end_with?(".tar.gz")
arg
else
arg.downcase
end
end.uniq end.uniq
end end
end end