aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew
diff options
context:
space:
mode:
authorMax Howell2011-02-13 12:23:17 +0000
committerAdam Vandenberg2011-03-12 11:55:06 -0800
commita8d185efa01c993a742a4943b37fc0808bfebd8c (patch)
treec5a01140a2520a6f470678f65163a527c94c39fb /Library/Homebrew
parent712dcff45f3bb37a2141fc53c74a718993bb5ea8 (diff)
downloadbrew-a8d185efa01c993a742a4943b37fc0808bfebd8c.tar.bz2
Fix `brew log foo`
Diffstat (limited to 'Library/Homebrew')
-rw-r--r--Library/Homebrew/cmd/log.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/cmd/log.rb b/Library/Homebrew/cmd/log.rb
index ceb0c8e02..11e1f5564 100644
--- a/Library/Homebrew/cmd/log.rb
+++ b/Library/Homebrew/cmd/log.rb
@@ -4,7 +4,7 @@ module Homebrew extend self
if ARGV.named.empty?
exec "git", "log", *ARGV.options_only
else
- exec "git", "log", *ARGV.formulae.map(&:path), *ARGV.options_only
+ exec "git", "log", *ARGV.formulae.map(&:path) + ARGV.options_only
end
end
end