diff options
author | Evgeny Mandrikov <138671+Godin@users.noreply.github.com> | 2020-04-16 18:17:55 +0200 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2020-04-16 20:03:49 +0000 |
commit | 302447df107c0d961daa2fe44f48cab7424f526c (patch) | |
tree | 5cd548ce0cc9a4157ecd4c4a9cc849008c7bb958 /sonar-application/build.gradle | |
parent | 47bdeede2e968ec828a231fe5679ea37fbe00a4d (diff) | |
download | sonarqube-302447df107c0d961daa2fe44f48cab7424f526c.tar.gz sonarqube-302447df107c0d961daa2fe44f48cab7424f526c.zip |
Upgrade Gradle to 6.3
Diffstat (limited to 'sonar-application/build.gradle')
-rw-r--r-- | sonar-application/build.gradle | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sonar-application/build.gradle b/sonar-application/build.gradle index 09d4a813a76..63f620882f6 100644 --- a/sonar-application/build.gradle +++ b/sonar-application/build.gradle @@ -148,7 +148,7 @@ task zip(type: Zip, dependsOn: [configurations.compile]) { from(tasks.getByPath(':server:sonar-web:yarn_run').outputs) { a -> if (official) { project(':private:branding').fileTree('src').visit { b -> - if (!b.isDirectory) { + if (!b.isDirectory()) { a.exclude b.relativePath.toString() } } |