Skip to content
Snippets Groups Projects
Commit be9d91b2 authored by Jack Nagel's avatar Jack Nagel
Browse files

audit: match #{prefix}/libexec and prefix+'libexec'


These were being picked up as just "#{prefix}/lib" and prefix+'lib' due
to the eagerness of the regex. Reordering "lib" and "libexec" will take
care of it; I couldn't think of a more clever solution.

Signed-off-by: default avatarJack Nagel <jacknagel@gmail.com>
parent 9bce115e
No related branches found
No related tags found
No related merge requests found
......@@ -50,7 +50,7 @@ def audit_formula_text name, text
end
# Prefer formula path shortcuts in Pathname+
if text =~ %r{\(\s*(prefix\s*\+\s*(['"])(bin|include|lib|libexec|sbin|share))}
if text =~ %r{\(\s*(prefix\s*\+\s*(['"])(bin|include|libexec|lib|sbin|share))}
problems << " * \"(#{$1}...#{$2})\" should be \"(#{$3}+...)\""
end
......@@ -59,7 +59,7 @@ def audit_formula_text name, text
end
# Prefer formula path shortcuts in strings
if text =~ %r[(\#\{prefix\}/(bin|include|lib|libexec|sbin|share))]
if text =~ %r[(\#\{prefix\}/(bin|include|libexec|lib|sbin|share))]
problems << " * \"#{$1}\" should be \"\#{#{$2}}\""
end
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment