fix method, add new print

This commit is contained in:
Roberto Cirillo 2022-10-13 10:30:24 +02:00
parent f494d5dbc3
commit eb7bf27c81
1 changed files with 2 additions and 2 deletions

4
Jenkinsfile vendored
View File

@ -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);
}