From 0ba5b543fac595e9e3abdc5f5af586e6d877c64b Mon Sep 17 00:00:00 2001 From: "roberto.cirillo" Date: Fri, 9 Sep 2022 11:49:36 +0200 Subject: [PATCH] small change: add new log --- Jenkinsfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index c2f4283..66b6e31 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -297,8 +297,9 @@ def getComponentsFromCSVDir(def dirPath){ println (" processing folder "+folder); folder.eachFileRecurse FileType.FILES, { file -> // check it if the file ends with a .csv extension + println("checking file: "+file); if (file.name.endsWith(".csv")) { - println "Processing file " + println ("Processing file "); readFile(file).split('\n').each { line, count-> if (line.startsWith('#')) return @@ -311,7 +312,7 @@ def getComponentsFromCSVDir(def dirPath){ ) } } - println "removing current deploy file: "+file.name + println ("removing current deploy file: "+file.name); // remove the file here if possible // file.delete(); }