aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorCharlie Sharpsteen2011-11-21 09:00:34 -0800
committerCharlie Sharpsteen2011-11-21 09:00:34 -0800
commitdb1c320a7c882182ba3a010626d6456216fc31d2 (patch)
treea99df37ba82586beadb04c43b0b204720c011b50 /Library
parentd317675387df9efbbe2f40e7f87b059d163afe6b (diff)
downloadhomebrew-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-xLibrary/Homebrew/cmd/audit.rb2
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