Skip to content

Commit

Permalink
Changing the magic &:downcase back to regular block.
Browse files Browse the repository at this point in the history
Fixes Homebrew#2089

Signed-off-by: Adam Vandenberg <flangy@gmail.com>

(This is needed for 10.5 support.)
  • Loading branch information
burnto authored and adamv committed Aug 9, 2010
1 parent a262e27 commit 3d89258
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Library/Homebrew/extend/ARGV.rb
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,6 @@ def resolve_alias name
private

def downcased_unique_named
@downcased_unique_named ||= named.map(&:downcase).uniq
@downcased_unique_named ||= named.map{|arg| arg.downcase}.uniq
end
end

0 comments on commit 3d89258

Please sign in to comment.