fixing parsing function

This commit is contained in:
Roberto Cirillo 2022-04-26 17:23:18 +02:00
parent 132ce1b3db
commit 4f6ab3dfcd
1 changed files with 1 additions and 1 deletions

2
Jenkinsfile vendored
View File

@ -144,7 +144,7 @@ def parseDeployComponent(def deployList) {
println "Going to parsing file ${deployList}"
def components = []
new File("${deployList}").splitEachLine(',') { columns ->
if (columns[0].startsWith('#') || columns[0].startsWith('Component'))
if (columns[0].startsWith('#') || columns[0].startsWith('Component'))
return
components.add([
name : columns[0],