Skip to content
Snippets Groups Projects
Commit 72d83ada authored by Jack Nagel's avatar Jack Nagel
Browse files

Adjust link command for updated error handling

parent 6b5e92ac
No related branches found
No related tags found
No related merge requests found
......@@ -32,9 +32,16 @@ module Homebrew extend self
end
keg.lock do
print "Linking #{keg}... " do
puts if ARGV.verbose?
puts "#{keg.link(mode)} symlinks created"
print "Linking #{keg}... "
puts if ARGV.verbose?
begin
n = keg.link(mode)
rescue Keg::LinkError
puts
raise
else
puts "#{n} symlinks created"
end
end
end
......@@ -47,33 +54,4 @@ module Homebrew extend self
rescue FormulaUnavailableError
false
end
# Allows us to ensure a puts happens before the block exits so that if say,
# an exception is thrown, its output starts on a new line.
def print str, &block
Kernel.print str
STDERR.extend Module.new {
def puts(*args)
unless $did_puts
STDOUT.puts
$did_puts = true
end
super
end
}
puts_capture = Class.new do
def self.puts(*args)
$did_puts = true
Kernel.puts(*args)
end
end
puts_capture.instance_eval(&block)
ensure
puts unless $did_puts
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