From eb7bf27c81ac305032c1c500349777dc4f80a67a Mon Sep 17 00:00:00 2001 From: "roberto.cirillo" Date: Thu, 13 Oct 2022 10:30:24 +0200 Subject: [PATCH] fix method, add new print --- Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index af23894..980ef3f 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -394,7 +394,7 @@ def deployRelease(def categoryList, def json){ def categories=categoryList.split(',') json.gCube_release.Components.each { group_name, component_list -> for ( def category : categories){ - println ("processing category: $category") + println ("processing category: "+category) if("${group_name}" == "$category"){ if (category == 'Distribution'){ //searching smartgears-distribution version in Distribution component of defined inside the yaml file @@ -408,7 +408,7 @@ def deployRelease(def categoryList, def json){ } } } - + deployReleaseJobs(releaseList, smartgears); }