aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorkaizoku2013-08-29 12:01:23 -0700
committerAdam Vandenberg2013-08-30 14:14:47 -0700
commitdbce25783c5654bda3d2ffacfbfe1a4d9fffb7b8 (patch)
tree90a589eabe9b532b764ae50fd5e7d78bd60f1a18 /Library
parent51d1a8e3c5e1a0119837304c7678a3287eb66a67 (diff)
downloadbrew-dbce25783c5654bda3d2ffacfbfe1a4d9fffb7b8.tar.bz2
Show list of dependencies prior to installing them
Closes Homebrew/homebrew#22205. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Homebrew/formula_installer.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/Library/Homebrew/formula_installer.rb b/Library/Homebrew/formula_installer.rb
index e1cdfd8da..2d8d15b01 100644
--- a/Library/Homebrew/formula_installer.rb
+++ b/Library/Homebrew/formula_installer.rb
@@ -207,6 +207,7 @@ class FormulaInstaller
end
def install_dependencies
+ oh1 "Installing dependencies for #{f}: #{Tty.green}#{effective_deps.join(", ")}#{Tty.reset}" if not effective_deps.empty?
effective_deps.each do |dep|
if dep.requested?
install_dependency(dep)