aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMike McQuaid2014-04-11 15:11:14 +0100
committerMike McQuaid2014-04-11 16:02:41 +0100
commitf51bda9e0a348179a80481bf655dd88fc7f8f84d (patch)
tree5aee9f394d61238bb321617c8df17fe618d97b97
parent3a5c14cea4a56f75e45b783633258480acda9431 (diff)
downloadbrew-f51bda9e0a348179a80481bf655dd88fc7f8f84d.tar.bz2
readall: set Homebrew.failed on exception.
-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