diff options
| author | Adam Vandenberg | 2011-07-29 08:34:00 -0700 |
|---|---|---|
| committer | Adam Vandenberg | 2011-07-29 08:34:00 -0700 |
| commit | 7f5ab8cedc14cb88452a4fd127dd108abec81fc5 (patch) | |
| tree | 8ba38a1e99b05f53cf3a6f6d88e8797d4f44a902 /Library | |
| parent | 27478b78948792896980a7f304e63e1a13c0b2d9 (diff) | |
| download | homebrew-7f5ab8cedc14cb88452a4fd127dd108abec81fc5.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 |
