From 55e3f97946ee47728d0ae298b92504a378967645 Mon Sep 17 00:00:00 2001 From: Shautvast Date: Sat, 28 Mar 2026 14:35:36 +0100 Subject: [PATCH] Use patched rclone for proton drive integration --- infra/backup.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/infra/backup.sh b/infra/backup.sh index ecf790f..0d1e07c 100755 --- a/infra/backup.sh +++ b/infra/backup.sh @@ -142,7 +142,8 @@ log "Archive size: ${ARCHIVE_SIZE}" if [ -n "${BACKUP_REMOTE}" ]; then if command -v rclone &>/dev/null; then log "Uploading to ${BACKUP_REMOTE}…" - rclone copy --transfers 1 --retries 5 "${ARCHIVE_PATH}" "${BACKUP_REMOTE}/" + #use patched rclone for now + /home/sander/dev/rclone/rclone copy --transfers 1 --retries 5 "${ARCHIVE_PATH}" "${BACKUP_REMOTE}/" log "Upload complete." else log "WARNING: HIY_BACKUP_REMOTE is set but rclone is not installed — skipping"