aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
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