aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorMike McQuaid2014-04-11 15:11:14 +0100
committerMike McQuaid2014-04-11 16:02:41 +0100
commit31c38314887dfebaca9ce39ad5ce1a3be4672a15 (patch)
tree44238b8a99e9d082b4a025811b853c85dce92703 /Library
parentf23ddc7456e0e004d9d55f32ec660460a7b7b461 (diff)
downloadhomebrew-31c38314887dfebaca9ce39ad5ce1a3be4672a15.tar.bz2
readall: set Homebrew.failed on exception.
Diffstat (limited to 'Library')
-rwxr-xr-xLibrary/Contributions/cmd/brew-readall.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/Library/Contributions/cmd/brew-readall.rb b/Library/Contributions/cmd/brew-readall.rb
index cdd0d31ea..0f5235896 100755
--- a/Library/Contributions/cmd/brew-readall.rb
+++ b/Library/Contributions/cmd/brew-readall.rb
@@ -10,5 +10,6 @@ Formula.names.each do |n|
rescue Exception => e
onoe "problem in #{Formula.path(n)}"
puts e
+ Homebrew.failed = true
end
end