diff options
author | Jacek <jacek.poreda@sonarsource.com> | 2021-02-12 18:23:29 +0100 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2021-02-12 20:07:13 +0000 |
commit | 70cd3fb194cb5d5d966a368ea3b7cda30253b6d8 (patch) | |
tree | 10aeae7a9b55a6922a1372506e98fe2a20723b5c /sonar-application/build.gradle | |
parent | de518feff484b416ad16d2861598f5954e10e92c (diff) | |
download | sonarqube-70cd3fb194cb5d5d966a368ea3b7cda30253b6d8.tar.gz sonarqube-70cd3fb194cb5d5d966a368ea3b7cda30253b6d8.zip |
Increase allowed zip size
Diffstat (limited to 'sonar-application/build.gradle')
-rw-r--r-- | sonar-application/build.gradle | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sonar-application/build.gradle b/sonar-application/build.gradle index abfeca30e91..fafe614870a 100644 --- a/sonar-application/build.gradle +++ b/sonar-application/build.gradle @@ -164,8 +164,8 @@ zip.doFirst { } // Check the size of the archive zip.doLast { - def minLength = 236000000 - def maxLength = 256000000 + def minLength = 237000000 + def maxLength = 257000000 def length = archiveFile.get().asFile.length() if (length < minLength) |