Преглед изворни кода

Reactivate zip size check for non release build

tags/7.8
Grégoire Aubert пре 5 година
родитељ
комит
6edd73a5b4
1 измењених фајлова са 7 додато и 9 уклоњено
  1. 7
    9
      sonar-application/build.gradle

+ 7
- 9
sonar-application/build.gradle Прегледај датотеку

@@ -175,15 +175,13 @@ zip.doFirst {
}
// Check the size of the archive
zip.doLast {
if (release) {
def minLength = 191000000
def maxLength = 198000000
def length = new File(distsDir, archiveName).length()
if (length < minLength)
throw new GradleException("$archiveName size ($length) too small. Min is $minLength")
if (length > maxLength)
throw new GradleException("$distsDir/$archiveName size ($length) too large. Max is $maxLength")
}
def minLength = 191000000
def maxLength = 198000000
def length = new File(distsDir, archiveName).length()
if (length < minLength)
throw new GradleException("$archiveName size ($length) too small. Min is $minLength")
if (length > maxLength)
throw new GradleException("$distsDir/$archiveName size ($length) too large. Max is $maxLength")
}
assemble.dependsOn zip


Loading…
Откажи
Сачувај