From 2356a6d8746f3cc72c09f9d7c658e45d4d073946 Mon Sep 17 00:00:00 2001 From: Jack Nagel <jacknagel@gmail.com> Date: Sat, 22 Jun 2013 12:54:46 -0500 Subject: [PATCH] deps: allow "--installed --tree" --- Library/Homebrew/cmd/deps.rb | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Library/Homebrew/cmd/deps.rb b/Library/Homebrew/cmd/deps.rb index 05cc4b7778..bb0868360f 100644 --- a/Library/Homebrew/cmd/deps.rb +++ b/Library/Homebrew/cmd/deps.rb @@ -10,7 +10,9 @@ module Homebrew extend self :topo_order? => ARGV.include?('-n') ) - if mode.installed? + if mode.installed? && mode.tree? + puts_deps_tree Formula.installed + elsif mode.installed? puts_deps Formula.installed elsif mode.all? puts_deps Formula -- GitLab