This is an automated email from the ASF dual-hosted git repository.
jleroux pushed a commit to branch release17.12
in repository
https://gitbox.apache.org/repos/asf/ofbiz-framework.gitThe following commit(s) were added to refs/heads/release17.12 by this push:
new 31a3a75 Fixed: svg files not removed on clean (OFBIZ-11976)
31a3a75 is described below
commit 31a3a75938f2fd9fc0f8bb407ce7048d34fc8205
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 0d6e70c..bb2071c 100644
--- a/build.gradle
+++ b/build.gradle
@@ -603,6 +603,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