small change: add new log

This commit is contained in:
Roberto Cirillo 2022-09-09 11:49:36 +02:00
parent 7d2c0529e6
commit 0ba5b543fa
1 changed files with 3 additions and 2 deletions

5
Jenkinsfile vendored
View File

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