diff options
| author | Max Howell | 2011-02-13 12:23:17 +0000 |
|---|---|---|
| committer | Adam Vandenberg | 2011-03-12 11:55:06 -0800 |
| commit | a8d185efa01c993a742a4943b37fc0808bfebd8c (patch) | |
| tree | c5a01140a2520a6f470678f65163a527c94c39fb /Library | |
| parent | 712dcff45f3bb37a2141fc53c74a718993bb5ea8 (diff) | |
| download | brew-a8d185efa01c993a742a4943b37fc0808bfebd8c.tar.bz2 | |
Fix `brew log foo`
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Homebrew/cmd/log.rb | 2 |
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 |
