Exclude net/log in rsync script (#6475)

automerge
This commit is contained in:
sakridge 2019-10-21 14:06:36 -07:00 committed by Grimes
parent 934f69b660
commit b1c2c6009e
1 changed files with 1 additions and 0 deletions

View File

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