From c3c27be583b7c95d4197cffc18bfdb7422bd43e4 Mon Sep 17 00:00:00 2001 From: Michael Dippery Date: Sat, 30 Oct 2010 09:45:58 -0400 Subject: [PATCH] `brew log` should show complete Git log if no formulae are specified Signed-off-by: Adam Vandenberg --- bin/brew | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/brew b/bin/brew index 0da9235353..be1e2a1a8e 100755 --- a/bin/brew +++ b/bin/brew @@ -277,7 +277,7 @@ begin when 'log' Dir.chdir HOMEBREW_REPOSITORY args = ARGV.options_only - args += ARGV.formulae.map{ |formula| formula.path } + args += ARGV.formulae.map{ |formula| formula.path } unless ARGV.named.empty? exec "git", "log", *args # For each formula given, show which other formulas depend on it.