aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/cmd/log.rb
blob: 11e1f55643cfceac78f3ced20567a3f4e186ecba (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