From 45922f19031539c040d043b5a58d59b765f27f61 Mon Sep 17 00:00:00 2001 From: Andrew Potter Date: Fri, 25 Apr 2014 14:22:41 -0400 Subject: [PATCH] run macports check after failed build instead of before every build Closes Homebrew/homebrew#28717. Signed-off-by: Adam Vandenberg --- Library/Homebrew/cmd/install.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Library/Homebrew/cmd/install.rb b/Library/Homebrew/cmd/install.rb index d1a50e8873..d8dfc34ba7 100644 --- a/Library/Homebrew/cmd/install.rb +++ b/Library/Homebrew/cmd/install.rb @@ -93,7 +93,6 @@ module Homebrew extend self check_ppc check_writable_install_location check_xcode - check_macports check_cellar end @@ -121,5 +120,6 @@ module Homebrew extend self opoo e.message rescue CannotInstallFormulaError => e ofail e.message + check_macports end end