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.git


The following commit(s) were added to refs/heads/trunk by this push:
     new 2df5cd211c Fixed: The README.html file is no longer copied on site 
(OFBIZ-12758)
2df5cd211c is described below

commit 2df5cd211cae575e826ba5fe20363f29129a1d43
Author: Jacques Le Roux <jacques.le.r...@les7arts.com>
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 570a5ff70f..95ff687842 100644
--- a/build.gradle
+++ b/build.gradle
@@ -597,9 +597,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 \

Reply via email to