aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/cmd/link.rb
diff options
context:
space:
mode:
authorJack Nagel2012-03-20 11:22:45 -0500
committerJack Nagel2012-03-20 11:24:35 -0500
commitdcdc67892004eb35f81f1d3f6d704c35e7a729f5 (patch)
tree28e3047d91d46b5e786bc2610bba21077b43aa6f /Library/Homebrew/cmd/link.rb
parentda917ed46607109a118a8bcbfa05fb628a1ab595 (diff)
downloadhomebrew-dcdc67892004eb35f81f1d3f6d704c35e7a729f5.tar.bz2
Remove broken `puts` from verbose `brew link`
The print wrapper which has its own `puts` broke this line; though with the changes to `link` it isn't necessary any longer, so just remove it. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Diffstat (limited to 'Library/Homebrew/cmd/link.rb')
-rw-r--r--Library/Homebrew/cmd/link.rb1
1 files changed, 0 insertions, 1 deletions
diff --git a/Library/Homebrew/cmd/link.rb b/Library/Homebrew/cmd/link.rb
index 8885d0155..8ac280c0d 100644
--- a/Library/Homebrew/cmd/link.rb
+++ b/Library/Homebrew/cmd/link.rb
@@ -16,7 +16,6 @@ module Homebrew extend self
end
print "Linking #{keg}... " do
- puts if ARGV.verbose?
puts "#{keg.link} symlinks created"
end
end