diff --git a/Jenkinsfile b/Jenkinsfile index 7de5c0d..a6914fa 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -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}" } }