Skip to content

Commit 62ff221

Browse files
committed
[RelEng] Fix final file transfer in indices updates
Fixes the following error: rsync: [generator] failed to set permissions on "/home/data/httpd/download.eclipse.org/eclipse/downloads/.": Operation not permitted (1)
1 parent 4944a22 commit 62ff221

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

JenkinsJobs/Releng/updateIndex.jenkinsfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,8 +87,8 @@ pipeline {
8787
}
8888
sshagent(['projects-storage.eclipse.org-bot-ssh']) {
8989
sh '''
90-
rsync -avzh site-eclipse/. [email protected]:${EP_ROOT}/eclipse/downloads/
91-
rsync -avzh site-equinox/. [email protected]:${EP_ROOT}/equinox/
90+
rsync -rvzh site-eclipse/. [email protected]:${EP_ROOT}/eclipse/downloads/
91+
rsync -rvzh site-equinox/. [email protected]:${EP_ROOT}/equinox/
9292
'''
9393
}
9494
}

0 commit comments

Comments
 (0)