Skip to content
Snippets Groups Projects
Commit adbd8cee authored by Jaime Marquínez Ferrándiz's avatar Jaime Marquínez Ferrándiz Committed by Jack Nagel
Browse files

New visualization for brew deps --tree


Closes Homebrew/homebrew#18835.

Signed-off-by: default avatarJack Nagel <jacknagel@gmail.com>
parent c8f2d41f
No related branches found
No related tags found
No related merge requests found
......@@ -2,7 +2,7 @@ require 'formula'
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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment