fix escape chars on find command

This commit is contained in:
Roberto Cirillo 2022-09-29 11:56:26 +02:00
parent 911b5e837d
commit 2ff971b021
1 changed files with 1 additions and 1 deletions

2
Jenkinsfile vendored
View File

@ -85,7 +85,7 @@ pipeline {
date=`date`;
mkdir -p ${DEPLOY_FILE_ROOT_FOLDER}
mkdir -p "${WORKSPACE}/CD"
find "${DEPLOY_FILE_ROOT_FOLDER}" -type f -exec mv '\'{'\'} "${WORKSPACE}/CD" '\';
find "${DEPLOY_FILE_ROOT_FOLDER}" -type f -exec mv '\'{'\'} "${WORKSPACE}/CD" '\'+
'''
}
}