aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorMike McQuaid2014-02-02 21:28:56 +0000
committerMike McQuaid2014-02-02 21:29:06 +0000
commit0c67d4db308efd9c23bc243a186026ae78a8a052 (patch)
treed3478df55500af1501eb6f4feca0e1eebff2c9ce /Library
parent5c0bf8c48b09a16c71a0d033c61379994ab0a274 (diff)
downloadhomebrew-0c67d4db308efd9c23bc243a186026ae78a8a052.tar.bz2
formula_installer: print bottle failure exception.
Diffstat (limited to 'Library')
-rw-r--r--Library/Homebrew/formula_installer.rb5
1 files changed, 3 insertions, 2 deletions
diff --git a/Library/Homebrew/formula_installer.rb b/Library/Homebrew/formula_installer.rb
index a2af3abd3..78dec6103 100644
--- a/Library/Homebrew/formula_installer.rb
+++ b/Library/Homebrew/formula_installer.rb
@@ -135,9 +135,10 @@ class FormulaInstaller
tab.tabfile.delete if tab.tabfile
tab.write
end
- rescue
- raise if ARGV.homebrew_developer?
+ rescue => e
+ raise e if ARGV.homebrew_developer?
@pour_failed = true
+ onoe e.message
opoo "Bottle installation failed: building from source."
end