Skip to content
Snippets Groups Projects
Commit da52fb67 authored by Shaun Jackman's avatar Shaun Jackman
Browse files

install_dependencies: Do not truncate dependencies

See Homebrew/legacy-homebrew#48449
parent 2b847959
No related branches found
No related tags found
No related merge requests found
......@@ -406,8 +406,9 @@ class FormulaInstaller
def install_dependencies(deps)
if deps.empty? && only_deps?
puts "All dependencies for #{formula.full_name} are satisfied."
else
oh1 "Installing dependencies for #{formula.full_name}: #{Tty.green}#{deps.map(&:first)*", "}#{Tty.reset}" unless deps.empty?
elsif !deps.empty?
oh1 "Installing dependencies for #{formula.full_name}: #{Tty.green}#{deps.map(&:first)*", "}#{Tty.reset}",
:truncate => false
deps.each { |dep, options| install_dependency(dep, options) }
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