This is an automated email from the ASF dual-hosted git repository.
jleroux pushed a commit to branch trunk
in repository
https://gitbox.apache.org/repos/asf/ofbiz-framework.gitThe following commit(s) were added to refs/heads/trunk by this push:
new fda56c6 Fixed: svg files not removed on clean (OFBIZ-11976)
fda56c6 is described below
commit fda56c6852294fc982b9319320b10995b1bc1a60
Author: Jacques Le Roux <
[hidden email]>
AuthorDate: Sun Aug 23 17:41:45 2020 +0200
Fixed: svg files not removed on clean (OFBIZ-11976)
Files like birt/src/docs/asciidoc/images/OFBiz-Logo.svg, in many plugins,
don't get removed on clean.
I simply missed to clean them in pluginAsciidoc Gradle task (OFBIZ-10677)
Thanks: Alex Bodnaru for report
---
build.gradle | 1 +
1 file changed, 1 insertion(+)
diff --git a/build.gradle b/build.gradle
index d87022d..2e12fb6 100644
--- a/build.gradle
+++ b/build.gradle
@@ -598,6 +598,7 @@ task generateAllPluginsDocumentation(group: docsGroup,
doLast { println "Documentation generated for plugin ${component.name}" }
}
mustRunAfter deleteAllPluginsDocumentation
+ doLast { delete "${component}/src/docs/asciidoc/images/OFBiz-Logo.svg" }
}
dependsOn pluginAsciidoc