aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorAndrew Potter2014-04-25 14:22:41 -0400
committerAdam Vandenberg2014-04-27 16:10:28 -0700
commit45922f19031539c040d043b5a58d59b765f27f61 (patch)
treeff0acb88a01709c1f82250ba181845fd2c09421f /Library
parent0291a579fbca3ed66a439835a8da3bd16a5378f6 (diff)
downloadbrew-45922f19031539c040d043b5a58d59b765f27f61.tar.bz2
run macports check after failed build instead of before every build
Closes Homebrew/homebrew#28717. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Homebrew/cmd/install.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/cmd/install.rb b/Library/Homebrew/cmd/install.rb
index d1a50e887..d8dfc34ba 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