Don't lower case arguments to brew make

Fixes Homebrew/homebrew#21
This commit is contained in:
Max Howell 2009-08-30 15:01:36 +01:00
parent 65cb8ea09f
commit a9d7b9e2ac

View File

@ -134,7 +134,7 @@ begin
if ARGV.include? '--macports'
exec "open", "http://www.macports.org/ports.php?by=name&substr=#{ARGV.next}"
else
exec "mate", *ARGV.named.collect {|name| make name}
exec "mate", *ARGV.collect {|name| make name}
end
when 'diy', 'configure'