diff options
| author | Adam Vandenberg | 2011-03-12 19:36:37 -0800 |
|---|---|---|
| committer | Adam Vandenberg | 2011-03-12 19:36:37 -0800 |
| commit | db306dedf79ef728841280e04e9d135f0bcc11d9 (patch) | |
| tree | b9ca28e41218a563b57f4627ba8d32bac96c3b8f /Library | |
| parent | bb3196cdb2b3cf3f42164fe26da265d18002bdcc (diff) | |
| download | homebrew-db306dedf79ef728841280e04e9d135f0bcc11d9.tar.bz2 | |
Fix 'brew log -p 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 11e1f5564..ce2ef8dc7 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.options_only + ARGV.formulae.map(&:path) end end end |
