aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorAdam Vandenberg2009-08-27 13:46:19 -0700
committerMax Howell2009-08-29 14:12:31 +0100
commita67cf9bef27cd3de55d83911857c55bb2c64c242 (patch)
tree85f2946f481d0e0dc5767477e2debb99a89c366d /Library
parentbf8071f0aa9779e23d0bb342376c0be7e1ab0ec6 (diff)
downloadbrew-a67cf9bef27cd3de55d83911857c55bb2c64c242.tar.bz2
Clarify --debug behavior.
Add a note that 'exit 1' will abort the installation in --debug mode. Signed Off By: Max Howell <max@methylblue.com> I ammended the text slightly and made the lines all 78 chars wide maximum.
Diffstat (limited to 'Library')
-rw-r--r--Library/Homebrew/formula.rb6
1 files changed, 4 insertions, 2 deletions
diff --git a/Library/Homebrew/formula.rb b/Library/Homebrew/formula.rb
index cc940ab79..2db3e0782 100644
--- a/Library/Homebrew/formula.rb
+++ b/Library/Homebrew/formula.rb
@@ -120,8 +120,10 @@ class Formula
onoe e.inspect
puts e.backtrace
ohai "Rescuing build..."
- puts "Type `exit' and Homebrew will attempt to finalize the installation"
- puts "If nothing is installed to #{prefix}, then Homebrew will abort"
+ puts "When you exit this shell Homebrew will attempt to finalise the installation."
+ puts "If nothing is installed or the shell exits with a non-zero error code,"
+ puts "Homebrew will abort. The installation prefix is:"
+ puts prefix
interactive_shell
end
end