diff options
| author | Adam Vandenberg | 2013-11-10 12:51:24 -0800 |
|---|---|---|
| committer | Adam Vandenberg | 2013-11-12 07:10:13 -0800 |
| commit | b4ba9dc2f599ff173e85adbdda94a0c42e423bf6 (patch) | |
| tree | 67deb66311603375ffb8525e743104d59ecb1970 /Library/Homebrew/cmd | |
| parent | cbaef82d6d2e8e58f1420d4b1620e749c4872ba5 (diff) | |
| download | homebrew-b4ba9dc2f599ff173e85adbdda94a0c42e423bf6.tar.bz2 | |
audit generic binary names
Binaries with names like 'run' or 'service' are likely to conflict.
Warn about these and suggest a libexec-style install instead.
Diffstat (limited to 'Library/Homebrew/cmd')
| -rw-r--r-- | Library/Homebrew/cmd/audit.rb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Library/Homebrew/cmd/audit.rb b/Library/Homebrew/cmd/audit.rb index 10b37e57a..80c2e45e5 100644 --- a/Library/Homebrew/cmd/audit.rb +++ b/Library/Homebrew/cmd/audit.rb @@ -562,7 +562,9 @@ class FormulaAuditor audit_check_output(check_jars) audit_check_output(check_non_libraries) audit_check_output(check_non_executables(f.bin)) + audit_check_output(check_generic_executables(f.bin)) audit_check_output(check_non_executables(f.sbin)) + audit_check_output(check_generic_executables(f.sbin)) end def audit |
