use openrsync instead of scp

This commit is contained in:
Solene Rapenne 2022-11-27 11:33:26 +01:00
parent a2b5cd5fac
commit 72a5c92070
1 changed files with 1 additions and 1 deletions

View File

@ -9,7 +9,7 @@ env SUBDIRLIST=~/fulllist BULK=yes make fetch
for arch in sparc64 amd64 i386 arm64; do
REMOTE=builder@${arch}-stable.ports.openbsd.org
scp config/*clude.txt ${REMOTE}:scripts/config/
scp ~/fulllist ${REMOTE}:
openrsync -av ~/fulllist ${REMOTE}:
ssh ${REMOTE} "cd scripts && ./01_update_ports.sh $PATHLIST && ./03_clean_packages.sh && ./04_make.sh && ./05_copy_packages.sh" &
done