generated from gCubeCI/Pipeline-Docker-Template
fixing parsing function
This commit is contained in:
parent
f81c597ee0
commit
132ce1b3db
|
@ -143,7 +143,7 @@ pipeline {
|
||||||
def parseDeployComponent(def deployList) {
|
def parseDeployComponent(def deployList) {
|
||||||
println "Going to parsing file ${deployList}"
|
println "Going to parsing file ${deployList}"
|
||||||
def components = []
|
def components = []
|
||||||
"${deployList}".splitEachLine(',') { columns ->
|
new File("${deployList}").splitEachLine(',') { columns ->
|
||||||
if (columns[0].startsWith('#') || columns[0].startsWith('Component'))
|
if (columns[0].startsWith('#') || columns[0].startsWith('Component'))
|
||||||
return
|
return
|
||||||
components.add([
|
components.add([
|
||||||
|
|
Loading…
Reference in New Issue