fix variable

This commit is contained in:
Roberto Cirillo 2022-10-12 10:50:04 +02:00
parent 70c41d75a0
commit f3f51d1e93
1 changed files with 1 additions and 1 deletions

2
Jenkinsfile vendored
View File

@ -225,7 +225,7 @@ pipeline {
jsonConfig.gCube_release.Components.each { group_name, component_list ->
for ( def category : categories){
if("${group_name}" == "$category"){
smartgears = (category == 'Distribution') ? $it.version : ''
smartgears = (category == 'Distribution') ? "$it.version" : ''
releaseList += component_list?.collect {return "$it.name,$it.version" }
println("found ${releaseList}");
}