diff options
| author | Charlie Sharpsteen | 2011-11-21 09:00:34 -0800 |
|---|---|---|
| committer | Charlie Sharpsteen | 2011-11-21 09:00:34 -0800 |
| commit | db1c320a7c882182ba3a010626d6456216fc31d2 (patch) | |
| tree | a99df37ba82586beadb04c43b0b204720c011b50 /Library | |
| parent | d317675387df9efbbe2f40e7f87b059d163afe6b (diff) | |
| download | homebrew-db1c320a7c882182ba3a010626d6456216fc31d2.tar.bz2 | |
audit.rb: Check version strings by default
Tired of telling people that version numbers are redundant. Just check it by
default since the `--strict` flag to `brew audit` is not well advertised.
Diffstat (limited to 'Library')
| -rwxr-xr-x | Library/Homebrew/cmd/audit.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/cmd/audit.rb b/Library/Homebrew/cmd/audit.rb index b9d67bac6..b18d5e6bf 100755 --- a/Library/Homebrew/cmd/audit.rb +++ b/Library/Homebrew/cmd/audit.rb @@ -308,7 +308,7 @@ module Homebrew extend self problems += audit_formula_text(f.name, text_without_patch) problems += audit_formula_options(f, text_without_patch) - problems += audit_formula_version(f, text_without_patch) if strict? + problems += audit_formula_version(f, text_without_patch) unless problems.empty? errors = true |
