This is an automated email from the ASF dual-hosted git repository.

rombert pushed a commit to branch feature/SLING-7245
in repository https://gitbox.apache.org/repos/asf/sling-tooling-jenkins.git


The following commit(s) were added to refs/heads/feature/SLING-7245 by this 
push:
     new c9a9562  SLING-7245 - Validate pull requests using Jenkins
c9a9562 is described below

commit c9a956229a94de94901d65b29ad504a1f526b0ed
Author: Robert Munteanu <[email protected]>
AuthorDate: Wed Jan 30 11:28:27 2019 +0100

    SLING-7245 - Validate pull requests using Jenkins
    
    Really fix JSON array to CSV conversion
---
 vars/slingOsgiBundleBuild.groovy | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/vars/slingOsgiBundleBuild.groovy b/vars/slingOsgiBundleBuild.groovy
index 8315b76..b47e4cb 100644
--- a/vars/slingOsgiBundleBuild.groovy
+++ b/vars/slingOsgiBundleBuild.groovy
@@ -163,5 +163,5 @@ def jsonArrayToCsv(net.sf.json.JSONArray items) {
     items.each { item ->
         result.add(item)
     }
-    return items.join(',')
+    return result.join(',')
 }
\ No newline at end of file

Reply via email to