From 31e4c568d0cc0ac41fe4ee6fafa95a184dc9e64f Mon Sep 17 00:00:00 2001 From: Max Howell Date: Sun, 13 Feb 2011 12:23:17 +0000 Subject: Fix `brew log foo` --- Library/Homebrew/cmd/log.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Library') 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 -- cgit v1.2.3