From 4f6ab3dfcdc43098ef349f88de2622004ca15791 Mon Sep 17 00:00:00 2001 From: Roberto Cirillo Date: Tue, 26 Apr 2022 17:23:18 +0200 Subject: [PATCH] fixing parsing function --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 467dc05..3ef3883 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -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],