diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2018-03-23 22:17:20 +0100 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2018-03-23 22:17:20 +0100 |
commit | 488a94a9297827e0e9d87fa85cf126d41ea0996e (patch) | |
tree | 71c47dc2fe3e39bc7db4373d27c2a2d790bcc8ac /scripts | |
parent | b8ceeb126309c2ecc9ff2d75a25cba09248a5665 (diff) | |
download | jenkinsfiles-488a94a9297827e0e9d87fa85cf126d41ea0996e.tar.gz |
try fix sync
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/rsync-rpm-repo.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/rsync-rpm-repo.sh b/scripts/rsync-rpm-repo.sh index 2433a27..385d672 100755 --- a/scripts/rsync-rpm-repo.sh +++ b/scripts/rsync-rpm-repo.sh @@ -14,12 +14,12 @@ rsync -av --fuzzy --bwlimit=$rate \ --include "*.rpm" \ --include "*/" \ --exclude "*" \ - "$srcdir" "$destdir" + "$srcdir" "$dstdir" echo "#" echo "# rsync repodata, cleanup" rsync -av --delete-after --bwlimit=$rate \ - "$srcdir" "$destdir" + "$srcdir" "$dstdir" echo "#" echo "# done" |