From 823f2234f1f7d6e0919e73ae6fccc71bac0c4740 Mon Sep 17 00:00:00 2001 From: commitay Date: Sat, 27 Oct 2018 10:44:09 +1000 Subject: [PATCH] audit: make `throttled` a regular audit --- Library/Homebrew/dev-cmd/audit.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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