You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by ko...@apache.org on 2022/01/18 14:32:45 UTC

[couchdb] 02/02: Fix make_packages

This is an automated email from the ASF dual-hosted git repository.

kocolosk pushed a commit to branch jenkins-dynamic-matrix
in repository https://gitbox.apache.org/repos/asf/couchdb.git

commit f270a7cf01597a2d11f7fa3673dd85904ab7e54c
Author: Adam Kocoloski <ko...@apache.org>
AuthorDate: Tue Jan 18 09:32:30 2022 -0500

    Fix make_packages
---
 build-aux/Jenkinsfile.full | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/build-aux/Jenkinsfile.full b/build-aux/Jenkinsfile.full
index b471539..3734107 100644
--- a/build-aux/Jenkinsfile.full
+++ b/build-aux/Jenkinsfile.full
@@ -14,12 +14,10 @@
 // the License.
 
 make_packages = '''
-mkdir ${PLATFORM}
+mkdir -p ${PLATFORM}/couchdb
+tar -xf apache-couchdb-*.tar.gz -C ${PLATFORM}/couchdb
 cd ${PLATFORM}
 git clone https://github.com/apache/couchdb-pkg
-mkdir couchdb
-cp apache-couchdb-*.tar.gz couchdb
-tar -xf apache-couchdb-*.tar.gz -C couchdb
 cd couchdb-pkg
 make
 '''