aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorAdam Vandenberg2013-06-23 16:15:11 -0700
committerAdam Vandenberg2013-06-24 07:33:29 -0700
commit29847b54aa38cfa06517ffdfa5a7b1b070fc59a8 (patch)
treed0d89a709d9bcffeaf4f91eabf95a7e80c000501 /Library
parentd8d41ccabcb78258bae1df50c3a6148f3811fc5d (diff)
downloadhomebrew-29847b54aa38cfa06517ffdfa5a7b1b070fc59a8.tar.bz2
Show tap/path for non-core formulae on build failure
Closes #16373. Closes #20725.
Diffstat (limited to 'Library')
-rw-r--r--Library/Homebrew/exceptions.rb6
-rw-r--r--Library/Homebrew/formula.rb5
2 files changed, 11 insertions, 0 deletions
diff --git a/Library/Homebrew/exceptions.rb b/Library/Homebrew/exceptions.rb
index 71ce3eccd..612e4b705 100644
--- a/Library/Homebrew/exceptions.rb
+++ b/Library/Homebrew/exceptions.rb
@@ -173,6 +173,12 @@ class BuildError < Homebrew::InstallationError
else
require 'cmd/--config'
require 'cmd/--env'
+
+ unless formula.core_formula?
+ ohai "Formula"
+ puts "Tap: #{formula.tap}" unless formula.tap == "mxcl/master" # tap lies about non-tap externals
+ puts "Path: #{formula.path.realpath}"
+ end
ohai "Configuration"
Homebrew.dump_build_config
ohai "ENV"
diff --git a/Library/Homebrew/formula.rb b/Library/Homebrew/formula.rb
index 3ad91ac8b..283395124 100644
--- a/Library/Homebrew/formula.rb
+++ b/Library/Homebrew/formula.rb
@@ -495,6 +495,11 @@ class Formula
end
end
+ # True if this formula is provided by Homebrew itself
+ def core_formula?
+ path.realpath.to_s == Formula.path(name).to_s
+ end
+
def self.path name
Pathname.new("#{HOMEBREW_REPOSITORY}/Library/Formula/#{name.downcase}.rb")
end