aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMax Howell2009-08-30 15:01:36 +0100
committerMax Howell2009-08-30 15:01:36 +0100
commita9d7b9e2ac3139a16e856d591e1803939faaf61a (patch)
treeda4a9630cf26bf0768ac6a7d2821f57cfebde881
parent65cb8ea09f1bc7be1eee024a8342e8e129d3b4d4 (diff)
downloadbrew-a9d7b9e2ac3139a16e856d591e1803939faaf61a.tar.bz2
Don't lower case arguments to brew make
Fixes Homebrew/homebrew#21
-rwxr-xr-xbin/brew2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/brew b/bin/brew
index f16d19eb4..4887ae284 100755
--- a/bin/brew
+++ b/bin/brew
@@ -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'