diff --git a/centos-ci/run-rdgo-rsync b/centos-ci/run-rdgo-rsync index 8e96ff8..df07374 100755 --- a/centos-ci/run-rdgo-rsync +++ b/centos-ci/run-rdgo-rsync @@ -15,7 +15,7 @@ fi for v in rdgo; do sudo chown -R -h $USER:$USER ${v}/ - find ${v}/ -exec chmod a+rX {} + + find ${v}/ ! -type l -exec chmod a+rX {} + rsync --delete --stats -a ${v}/ sig-atomic@artifacts.ci.centos.org::sig-atomic/${build}/${v}/ done diff --git a/centos-ci/run-treecompose b/centos-ci/run-treecompose index c83c13a..3218623 100755 --- a/centos-ci/run-treecompose +++ b/centos-ci/run-treecompose @@ -37,6 +37,6 @@ ostree --repo=ostree/repo summary -u for v in ostree; do sudo chown -R -h $USER:$USER ${v}/ - find ${v}/ -exec chmod a+rX {} + + find ${v}/ ! -type l -exec chmod a+rX {} + rsync --delete --stats -a ${v}/ sig-atomic@artifacts.ci.centos.org::sig-atomic/${build}/${v}/ done