From 83b57244656f2c79bdf7e41812e82fa5645fd511 Mon Sep 17 00:00:00 2001 From: Max Howell Date: Fri, 23 Oct 2009 16:05:16 +0100 Subject: Show backtrace during non fatal install steps if --debug --- Library/Homebrew/install.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'Library') diff --git a/Library/Homebrew/install.rb b/Library/Homebrew/install.rb index 19fa99b7d..f3ddd34bb 100755 --- a/Library/Homebrew/install.rb +++ b/Library/Homebrew/install.rb @@ -96,7 +96,7 @@ def install f rescue Exception => e opoo "The cleaning step did not complete successfully" puts "Still, the installation was successful, so we will link it into your prefix" - ohai e, e.inspect if ARGV.debug? + ohai e, e.backtrace if ARGV.debug? show_summary_heading = true end @@ -122,11 +122,11 @@ def install f else begin Keg.new(f.prefix).link - rescue Exception + rescue Exception => e onoe "The linking step did not complete successfully" puts "The package built, but is not symlinked into #{HOMEBREW_PREFIX}" puts "You can try again using `brew link #{f.name}'" - ohai e, e.inspect if ARGV.debug? + ohai e, e.backtrace if ARGV.debug? show_summary_heading = true end end -- cgit v1.2.3