aboutsummaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorMax Howell2010-03-09 02:13:33 +0000
committerAdam Vandenberg2010-07-18 13:52:01 -0700
commitbc5ee7c482396af3a1f15cd851df0c8390836f89 (patch)
treeb1756af6e2e8af23e8f813728dc00028dfa520c4 /bin
parenta496ca016646538351d6ff2cd3eb08d22fc5d19e (diff)
downloadbrew-bc5ee7c482396af3a1f15cd851df0c8390836f89.tar.bz2
brew.h info takes a formula parameter rather than a string
* Preference is for commands to take instantiated formulae as parameters rather than formula names, so alias resolution can be centralized.
Diffstat (limited to 'bin')
-rwxr-xr-xbin/brew2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/brew b/bin/brew
index 00a7a80b8..9420fbb2e 100755
--- a/bin/brew
+++ b/bin/brew
@@ -243,7 +243,7 @@ begin
elsif ARGV[0][0..6] == 'http://'
puts Pathname.new(ARGV.shift).version
else
- ARGV.named.each {|name| info name}
+ ARGV.formulae.each{ |f| info f }
end
when 'cleanup'