Skip to content
Snippets Groups Projects
Commit 176e5538 authored by Misty De Meo's avatar Misty De Meo
Browse files

ARGV: don't downcase bottle filenames

Fixes Homebrew/homebrew#42470.
parent 4f549da1
No related branches found
No related tags found
No related merge requests found
......@@ -213,9 +213,13 @@ module HomebrewArgvExtension
end
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|
arg.include?("/") ? arg : arg.downcase
if arg.include?("/") || arg.end_with?(".tar.gz")
arg
else
arg.downcase
end
end.uniq
end
end
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