Commit 431d0c38 authored by Michał Siwek's avatar Michał Siwek

Fix dependencies print line

parent 3b0f4501
...@@ -187,9 +187,12 @@ def resolveDependencies ...@@ -187,9 +187,12 @@ def resolveDependencies
return if @dependencies.empty? return if @dependencies.empty?
puts "Following packages also need to be installed: " puts "Following packages also need to be installed: "
@dependencies.flatten!.uniq!.each do |dep|
@dependencies.flatten!.uniq!
@dependencies.each do |dep|
print dep + " " print dep + " "
end end
puts "" puts ""
puts "Do you agree? [Y/n]" puts "Do you agree? [Y/n]"
response = STDIN.getc response = STDIN.getc
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment