fix readCSV method

This commit is contained in:
Roberto Cirillo 2022-04-27 11:51:29 +02:00
parent 1d59881e90
commit cd0e17b759
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 : "${previous_report_file}")
def content = readCSV( file : "${deployList}")
println "JOB REPORT CONTENT: ${content}"
def components = []
content.splitEachLine(/,/) { columns ->