aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/dev-cmd
diff options
context:
space:
mode:
authorViktor Szakats2017-08-29 17:02:27 +0000
committerViktor Szakats2017-08-29 17:02:27 +0000
commit18f5b43d9001955784e235ce7f87068038175a82 (patch)
tree645dc343c558418dedd624b546f1eb104ec85d80 /Library/Homebrew/dev-cmd
parent56ccf10efaac5f97bae6b2e5aef9ef87d7529328 (diff)
downloadbrew-18f5b43d9001955784e235ce7f87068038175a82.tar.bz2
fix length ratio range
Diffstat (limited to 'Library/Homebrew/dev-cmd')
-rw-r--r--Library/Homebrew/dev-cmd/audit.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/dev-cmd/audit.rb b/Library/Homebrew/dev-cmd/audit.rb
index 17948ea2c..93aab6384 100644
--- a/Library/Homebrew/dev-cmd/audit.rb
+++ b/Library/Homebrew/dev-cmd/audit.rb
@@ -260,7 +260,7 @@ class FormulaAuditor
end
lenratio = (100 * secure_details[:file].length / details[:file].length).to_i
- return if lenratio < 90 || lenratio > 120
+ return if lenratio < 90 || lenratio > 110
"The URL #{url} may be able to use HTTPS rather than HTTP. Please verify it in a browser."
end