mojito317 commented on a change in pull request #3493:
URL: https://github.com/apache/couchdb/pull/3493#discussion_r609039903
##########
File path: build-aux/Jenkinsfile.full
##########
@@ -703,6 +703,7 @@ pipeline {
sh '''
cp js/centos-7/*rpm pkgs/centos7
cp js/centos-8/*rpm pkgs/centos8
+ cd pkgs
cd ../centos7 && createrepo --database .
Review comment:
this is not working since now you are here in the tree:
```
parent
├─pkgs <-- you will be here
├─ centos7
├─ centos8
```
If you change the directory to the parent of `pkgs`, there is no `centos7`
or `centos8` in it.
If you do a `cd pkgs/centos7` you can switch from there to `centos8` with
`cd ../centos8`.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]