blob: 5d3d0f1657780be2ca4c042b3dbf91c664dde1fa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#!/bin/sh
# Some commonly useful addtional options that can be specified via the
# command line:
#
# --dry-run
# --progress
#
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/
|