small fix

This commit is contained in:
Roberto Cirillo 2022-10-04 11:12:30 +02:00
parent 350b9ccb8c
commit 7f1a2be84e
1 changed files with 2 additions and 2 deletions

4
Jenkinsfile vendored
View File

@ -312,8 +312,8 @@ def cleanup(def DEPLOY_FILE, def BACKUP_FILE){
//clean and update the local deploy file
def clean(def files){
sh '''
echo "parsing $files";
for file in `ls $dirPath`; do
echo "parsing ${files}";
for file in `ls $files`; do
echo "cleaning $file";
if [ -f $file ]; then
rm $file;