diff options
| author | Adam Vandenberg | 2011-07-29 08:34:00 -0700 |
|---|---|---|
| committer | Adam Vandenberg | 2011-07-29 08:34:00 -0700 |
| commit | 8c50cb54c0086672148a117e1fca1baabe2f745b (patch) | |
| tree | 74001c4b49ae2f075711b0829468efa68996a46d /Library | |
| parent | 76745610ec7d23524db6109383063d01ee9ad7b8 (diff) | |
| download | brew-8c50cb54c0086672148a117e1fca1baabe2f745b.tar.bz2 | |
audit: make version checks strict only
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 9f4caa9a3..865cadf7c 100755 --- a/Library/Homebrew/cmd/audit.rb +++ b/Library/Homebrew/cmd/audit.rb @@ -295,7 +295,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) + problems += audit_formula_version(f, text_without_patch) if strict? unless problems.empty? errors = true |
