aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/cmd/log.rb
blob: ce2ef8dc7ef1afe15e9bd085637b7c81d54e2207 (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.options_only + ARGV.formulae.map(&:path)
    end
  end
end