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(); }