aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/extend
diff options
context:
space:
mode:
authorMike McQuaid2017-04-18 08:17:24 +0100
committerMike McQuaid2017-04-18 08:17:26 +0100
commit3f8722c971cedf8b2c66d918fc4dd608bf439009 (patch)
treee0adb797c34673331d2c16023425fbeca76a0a41 /Library/Homebrew/extend
parent417f49dd32bfe555b20f3f7d88e2739f6623991b (diff)
downloadbrew-3f8722c971cedf8b2c66d918fc4dd608bf439009.tar.bz2
audit: allow skipping audit methods.
Add `--only` and `--except` methods which can be used to selectively enable or disable audit groups.
Diffstat (limited to 'Library/Homebrew/extend')
-rw-r--r--Library/Homebrew/extend/os/mac/formula_cellar_checks.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/Library/Homebrew/extend/os/mac/formula_cellar_checks.rb b/Library/Homebrew/extend/os/mac/formula_cellar_checks.rb
index 5b1c648bf..10379c981 100644
--- a/Library/Homebrew/extend/os/mac/formula_cellar_checks.rb
+++ b/Library/Homebrew/extend/os/mac/formula_cellar_checks.rb
@@ -67,7 +67,7 @@ module FormulaCellarChecks
checker = LinkageChecker.new(keg, formula)
return unless checker.broken_dylibs?
- audit_check_output <<-EOS.undent
+ problem_if_output <<-EOS.undent
The installation was broken.
Broken dylib links found:
#{checker.broken_dylibs.to_a * "\n "}
@@ -76,9 +76,9 @@ module FormulaCellarChecks
def audit_installed
generic_audit_installed
- audit_check_output(check_shadowed_headers)
- audit_check_output(check_openssl_links)
- audit_check_output(check_python_framework_links(formula.lib))
+ problem_if_output(check_shadowed_headers)
+ problem_if_output(check_openssl_links)
+ problem_if_output(check_python_framework_links(formula.lib))
check_linkage
end
end