From b3328ce8629cfb063fa1cc6eda7c7719dbfb22f6 Mon Sep 17 00:00:00 2001 From: texhnolyze Date: Tue, 10 Mar 2026 15:19:11 +0100 Subject: [PATCH] fix(deploy_robots): do not run `rsync` with `--delete` as we now sync to the home dir and destroy everything otherwise --- scripts/deploy/tasks/sync.py | 1 - 1 file changed, 1 deletion(-) diff --git a/scripts/deploy/tasks/sync.py b/scripts/deploy/tasks/sync.py index 3f97bf0ec..ceee1db61 100644 --- a/scripts/deploy/tasks/sync.py +++ b/scripts/deploy/tasks/sync.py @@ -45,7 +45,6 @@ def _sync_single(connection: Connection) -> Result | None: "rsync", "--checksum", "--archive", - "--delete", "-e", '"ssh -o StrictHostKeyChecking=no"', f"--exclude-from={os.path.join(self._local_workspace, '.rsyncignore')}",