diff --git a/Library/Homebrew/dev-cmd/audit.rb b/Library/Homebrew/dev-cmd/audit.rb index c33d288106..d0c9379459 100644 --- a/Library/Homebrew/dev-cmd/audit.rb +++ b/Library/Homebrew/dev-cmd/audit.rb @@ -705,7 +705,7 @@ module Homebrew next if formula.stable.nil? version = formula.stable.version.to_s.split(".").last.to_i - if @strict && a == formula.name && version.modulo(b.to_i).nonzero? + if a == formula.name && version.modulo(b.to_i).nonzero? problem "should only be updated every #{b} releases on multiples of #{b}" end end