Jenkinsfile: remove use of find

This commit is contained in:
Benjamin Dauvergne 2022-03-17 11:28:13 +01:00
parent 1ccf9ec535
commit 5a61e97619
1 changed files with 1 additions and 1 deletions

2
Jenkinsfile vendored
View File

@ -45,7 +45,7 @@ PGPORT=`python3 -c 'import struct; import socket; s=socket.socket(); s.setsockop
}
}
cleanup {
sh "find ${env.TMPDIR} -type f -delete; rm -rf ${env.TMPDIR}"
sh "rm -rf ${env.TMPDIR}"
cleanWs()
}
}