fix csv parse

This commit is contained in:
Roberto Cirillo 2022-04-26 15:42:36 +02:00
parent 8ea538eb53
commit 9bfcbdd3cc
1 changed files with 2 additions and 2 deletions

4
Jenkinsfile vendored
View File

@ -148,8 +148,8 @@ pipeline {
def parseDeployComponent(def deployList) {
def components = []
"${deployList}".splitEachLine(',') { columns ->
if (columns[0].startsWith('#') || columns[0].startsWith('Components'))
return
// if (columns[0].startsWith('#') || columns[0].startsWith('Component'))
// return
components.add([
name : columns[1],
version : columns[2],