diff options
-rwxr-xr-x | tests/repository/publish | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/tests/repository/publish b/tests/repository/publish index df3245b..5d3d0f1 100755 --- a/tests/repository/publish +++ b/tests/repository/publish @@ -6,5 +6,11 @@ # --dry-run # --progress # -rsync -v -rlpt --exclude '.*' --copy-unsafe-links --prune-empty-dirs \ ---delete-after $* 1/ build2.org:/var/bpkg/1/tests/ +rsync -v -rlpt --copy-unsafe-links \ +--prune-empty-dirs --delete-after --delete-excluded $* \ +--include '*/' \ +--include '*.tar.gz' \ +--include 'packages' \ +--include 'repositories' \ +--exclude '*' \ +1/ build2.org:/var/bpkg/1/tests/ |