From bd32acfce2d78cd9653952bf47b142b5c2ecda96 Mon Sep 17 00:00:00 2001 From: Pierre Guillot <50145663+pierre-guillot-sonarsource@users.noreply.github.com> Date: Fri, 13 Dec 2019 17:05:22 +0100 Subject: [PATCH] SONAR-12775 Gitlab MR live update --- sonar-application/build.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sonar-application/build.gradle b/sonar-application/build.gradle index 98274318035..662fdda85bd 100644 --- a/sonar-application/build.gradle +++ b/sonar-application/build.gradle @@ -177,8 +177,8 @@ zip.doFirst { } // Check the size of the archive zip.doLast { - def minLength = 202000000 - def maxLength = 211000000 + def minLength = 203000000 + def maxLength = 212000000 def length = archiveFile.get().asFile.length() if (length < minLength) throw new GradleException("$archiveName size ($length) too small. Min is $minLength") -- 2.39.5