From ee6b0e7c9b5b5f2030830bbca97805d10867cdd6 Mon Sep 17 00:00:00 2001 From: ilovezfs Date: Thu, 3 Aug 2017 01:56:15 -0700 Subject: [PATCH] formula_cellar_checks: check_non_libraries only for new formulae This check is overly opinionated and leads to audit failures no one cares to fix, so let's only run it for new formulae. --- Library/Homebrew/formula_cellar_checks.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Library/Homebrew/formula_cellar_checks.rb b/Library/Homebrew/formula_cellar_checks.rb index 4718fc1a0e..6c433e420d 100644 --- a/Library/Homebrew/formula_cellar_checks.rb +++ b/Library/Homebrew/formula_cellar_checks.rb @@ -157,7 +157,7 @@ module FormulaCellarChecks problem_if_output(check_manpages) problem_if_output(check_infopages) problem_if_output(check_jars) - problem_if_output(check_non_libraries) + problem_if_output(check_non_libraries) if @new_formula problem_if_output(check_non_executables(formula.bin)) problem_if_output(check_generic_executables(formula.bin)) problem_if_output(check_non_executables(formula.sbin))