summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam Kocoloski <kocolosk@apache.org>2022-01-15 21:57:35 -0500
committerAdam Kocoloski <kocolosk@apache.org>2022-01-15 21:57:35 -0500
commit3aa91a049d6668c7bc6a7110bd35755266b07904 (patch)
treefec6605b18e50163e01db2c9f33f6405861f6043
parent742045863403f65e945be7046f58b2b978059beb (diff)
downloadcouchdb-3aa91a049d6668c7bc6a7110bd35755266b07904.tar.gz
Fix the cleaner
-rw-r--r--build-aux/Jenkinsfile.full2
1 files changed, 1 insertions, 1 deletions
diff --git a/build-aux/Jenkinsfile.full b/build-aux/Jenkinsfile.full
index e1156b07d..fc8334bf1 100644
--- a/build-aux/Jenkinsfile.full
+++ b/build-aux/Jenkinsfile.full
@@ -285,7 +285,7 @@ pipeline {
stages {
stage('Build from tarball & test') {
steps {
- sh( script: 'rm apache-couchdb-*.tar.gz', label: 'Clean workspace' )
+ sh( script: 'rm -rf apache-couchdb-*', label: 'Clean workspace' )
unstash 'tarball'
sh( script: unpack, label: 'Unpack tarball' )
dir( "${platform}/build/couchdb" ) {