This is an automated email from the ASF dual-hosted git repository.
jleroux pushed a commit to branch release22.01
in repository https://gitbox.apache.org/repos/asf/ofbiz-framework.git
The following commit(s) were added to refs/heads/release22.01 by this push:
new c29b5f78ae Fixed: The README.html file is no longer copied on site
(OFBIZ-12758)
c29b5f78ae is described below
commit c29b5f78ae5952ddd2b9c5b689ad3c9b26431cb2
Author: Jacques Le Roux <[email protected]>
AuthorDate: Fri Feb 17 09:33:03 2023 +0100
Fixed: The README.html file is no longer copied on site (OFBIZ-12758)
Last commit was not successful because it was really only a warning.
The real problem was a syntax error, here is the definite fix.
---
build.gradle | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/build.gradle b/build.gradle
index 687ee45783..eac3d997f1 100644
--- a/build.gradle
+++ b/build.gradle
@@ -581,9 +581,9 @@ tasks.withType(AsciidoctorTask) { task ->
outputOptions {
// I hate we have to do this - but JRuby (asciidoctorj-pdf) and
Windows don't mix well
if (System.properties['os.name'].toLowerCase().contains('windows')) {
- backends 'html5'
+ backends = ['html5']
} else {
- backends 'html5', 'pdf'
+ backends = ['html5', 'pdf']
}
}
attributes \