merging test

This commit is contained in:
Roberto Cirillo 2022-10-04 11:42:36 +02:00
parent 28fa798768
commit 1f93095e75
1 changed files with 4 additions and 1 deletions

5
Jenkinsfile vendored
View File

@ -112,6 +112,9 @@ pipeline {
if (files == null){
println ("Nothing to do");
}else{
for ( def file : files){
sh " ${file.path} >> ${deployFolder}/testdeploy.csv"
}
for (def file : files){
echo """
Found: ${file.name} with path ${file.path}
@ -130,7 +133,7 @@ pipeline {
}
sh "rm ${file.path}"
}
sh "rm -Rf ${deployFolder}"
// sh "rm -Rf ${deployFolder}"
}
}