aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorMax Howell2011-02-13 12:23:17 +0000
committerAdam Vandenberg2011-03-12 11:55:06 -0800
commit31e4c568d0cc0ac41fe4ee6fafa95a184dc9e64f (patch)
tree1c5ec30e4b27fc0d1d437587e716916ac11889ab /Library
parentb46b2192acdd78c0d2d162991e124fb9b67bc053 (diff)
downloadhomebrew-31e4c568d0cc0ac41fe4ee6fafa95a184dc9e64f.tar.bz2
Fix `brew log foo`
Diffstat (limited to 'Library')
-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