link: add missing newline in verbose mode

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
This commit is contained in:
Jack Nagel 2012-02-01 22:15:07 -06:00
parent d0be4d692b
commit 59458eac51

View File

@ -2,6 +2,7 @@ module Homebrew extend self
def link def link
ARGV.kegs.each do |keg| ARGV.kegs.each do |keg|
print "Linking #{keg}... " print "Linking #{keg}... "
puts if ARGV.verbose?
begin begin
puts "#{keg.link} symlinks created" puts "#{keg.link} symlinks created"
rescue Exception rescue Exception