From 5ee79605203d0b43f93a54397a61aff5a113f60b Mon Sep 17 00:00:00 2001 From: Roberto Cirillo Date: Wed, 27 Apr 2022 12:19:15 +0200 Subject: [PATCH] fix readCSV method --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index c5fbf94..056f6c7 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -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 ->