Skip to content

Commit

Permalink
New visualization for brew deps --tree
Browse files Browse the repository at this point in the history
Closes Homebrew#18835.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
  • Loading branch information
jaimeMF authored and jacknagel committed Apr 14, 2013
1 parent 6c0a291 commit f5b8a6a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Library/Homebrew/cmd/deps.rb
Expand Up @@ -2,7 +2,7 @@

def recursive_deps_tree f, level
f.deps.each do |dep|
puts "> "*level+dep.to_s
puts "| "*(level-1)+"|- "+dep.to_s
recursive_deps_tree(Formula.factory(dep), level+1)
end
end
Expand Down

0 comments on commit f5b8a6a

Please sign in to comment.