aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/cmd/log.rb
blob: ceb0c8e02ce722a0cf2e1346879194732298a69d (plain)
1
2
3
4
5
6
7
8
9
10
module Homebrew extend self
  def log
    cd HOMEBREW_REPOSITORY
    if ARGV.named.empty?
      exec "git", "log", *ARGV.options_only
    else
      exec "git", "log", *ARGV.formulae.map(&:path), *ARGV.options_only
    end
  end
end