ci-automation: silence rsync

The rsync copy logs made it hard to navigate the job output.
Remove the --progress and -v flags.
This commit is contained in:
Kai Lueke 2022-04-20 12:40:44 +09:00
parent da0380c7e8
commit 98e9947a06

View File

@ -129,7 +129,7 @@ function copy_to_buildcache() {
$sshcmd "${BUILDCACHE_USER}@${BUILDCACHE_SERVER}" \
"mkdir -p ${remote_path}"
rsync -Pav -e "${sshcmd}" "$@" \
rsync --partial -a -e "${sshcmd}" "$@" \
"${BUILDCACHE_USER}@${BUILDCACHE_SERVER}:${remote_path}"
}
# --