blob: 0fc65113ec658d9131c8cf590e12914ef040979e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
module Homebrew extend self
def log
if ARGV.named.empty?
cd HOMEBREW_REPOSITORY
exec "git", "log", *ARGV.options_only
else
path = ARGV.formulae.first.path.realpath
cd path.dirname # supports taps
exec "git", "log", *ARGV.options_only + [path]
end
end
end
|