From 9c3818394a97ff1b9d8e92f781bcd4a911ee9838 Mon Sep 17 00:00:00 2001 From: Stas Vilchik Date: Tue, 18 Dec 2018 15:51:21 +0100 Subject: create a separate js bundle for legacy browsers (#1073) --- sonar-application/build.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sonar-application') diff --git a/sonar-application/build.gradle b/sonar-application/build.gradle index 2610aab0d22..6afc7cf95d9 100644 --- a/sonar-application/build.gradle +++ b/sonar-application/build.gradle @@ -143,8 +143,8 @@ zip.doFirst { } // Check the size of the archive zip.doLast { - def minLength = 180000000 - def maxLength = 185000000 + def minLength = 185000000 + def maxLength = 190000000 def length = new File(distsDir, archiveName).length() if (length < minLength) throw new GradleException("$archiveName size ($length) too small. Min is $minLength") -- cgit v1.2.3