From a85baaf7323fac8c6e73f1dc4f84719dce3a1d17 Mon Sep 17 00:00:00 2001 From: Jeffrey Serio Date: Tue, 12 Nov 2024 19:40:31 -0600 Subject: [PATCH] Use -P -u -c --ignore-existing --- sync_to_protondrive | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sync_to_protondrive b/sync_to_protondrive index 853919c..5cd1071 100755 --- a/sync_to_protondrive +++ b/sync_to_protondrive @@ -19,6 +19,6 @@ for dir in "${SHARE_DIRS[@]}"; do cp -rfv "$dir" "${STAGING_DIR}/" done -rclone sync --transfers 8 "${STAGING_DIR:?}/" protondrive:/ +rclone sync --transfers 8 -P -u -c --ignore-existing "${STAGING_DIR:?}/" protondrive:/ exit 0