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
commit76a289bb8e05624004b3e3424af730d0915b8d93 (patch)
tree2ebc651e16e86a4548da2b6fdc040d214a1b2330 /Library
parent4cfc94c0582fb93d3c2ae9c90be08c9b5b6a63d2 (diff)
downloadhomebrew-76a289bb8e05624004b3e3424af730d0915b8d93.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