generated from gCubeCI/Pipeline-Docker-Template
fix escape chars on find command
This commit is contained in:
parent
56e53ec4b0
commit
911b5e837d
|
@ -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" '\';
|
||||
'''
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue