fix readCSV method

This commit is contained in:
Roberto Cirillo 2022-04-27 12:19:15 +02:00
parent cd0e17b759
commit 5ee7960520
1 changed files with 1 additions and 1 deletions

2
Jenkinsfile vendored
View File

@ -141,7 +141,7 @@ pipeline {
@NonCPS
def parseDeployComponent(def deployList) {
println "Going to parsing file ${deployList}"
def content = readCSV( file : "${deployList}")
def content = readCSV file : "${deployList}"
println "JOB REPORT CONTENT: ${content}"
def components = []
content.splitEachLine(/,/) { columns ->