Filter any net/log* directory from rsync (#6857)

This commit is contained in:
sakridge 2019-11-09 13:38:17 -08:00 committed by GitHub
parent 59adc25c23
commit b14e61ff79
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -434,7 +434,7 @@ startCommon() {
fi
[[ -z "$externalNodeSshKey" ]] || ssh-copy-id -f -i "$externalNodeSshKey" "${sshOptions[@]}" "solana@$ipAddress"
rsync -vPrc -e "ssh ${sshOptions[*]}" \
--exclude 'net/log' \
--exclude 'net/log*' \
"$SOLANA_ROOT"/{fetch-perf-libs.sh,scripts,net,multinode-demo} \
"$ipAddress":~/solana/
}