From bcf76ab7c74f6121ddc44f5dd31f109fe0efbc42 Mon Sep 17 00:00:00 2001 From: Simon Brandhof Date: Wed, 19 Sep 2018 14:32:11 +0200 Subject: [PATCH] Fix Gradle cache of sonar-web Do not reuse the cache of sonar-web outputs when switching "official" mode. --- server/sonar-web/build.gradle | 1 + 1 file changed, 1 insertion(+) diff --git a/server/sonar-web/build.gradle b/server/sonar-web/build.gradle index 3f7135ed83c..57567dc7ac4 100644 --- a/server/sonar-web/build.gradle +++ b/server/sonar-web/build.gradle @@ -49,6 +49,7 @@ task copyBranding() { yarn_run { if (official) { dependsOn copyBranding } + inputs.property('official', official) ['config', 'public', 'scripts', 'src', '../sonar-docs/src'].each { inputs.dir(it).withPathSensitivity(PathSensitivity.RELATIVE) } -- 2.39.5