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
commit8108ccc374b7282ba31b03e21f16f9376a186248 (patch)
tree3db2e191f207bb0cfa4106e641f730f163f22d4a /Library
parentcbd14fde1e7392424decea54f0d8caf16df01260 (diff)
downloadbrew-8108ccc374b7282ba31b03e21f16f9376a186248.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