From f51bda9e0a348179a80481bf655dd88fc7f8f84d Mon Sep 17 00:00:00 2001 From: Mike McQuaid Date: Fri, 11 Apr 2014 15:11:14 +0100 Subject: [PATCH] readall: set Homebrew.failed on exception. --- Library/Contributions/cmd/brew-readall.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/Library/Contributions/cmd/brew-readall.rb b/Library/Contributions/cmd/brew-readall.rb index cdd0d31eaf..0f52358961 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