This commit is contained in:
2026-07-30 23:04:50 +02:00
parent 4470246ebb
commit eeaada77d4
+8 -4
View File
@@ -6221,10 +6221,14 @@ def cmd_auto(
name = proj.name
print(f"\n--- {name} ---")
# 1. Sync from the relay (brings the newest commits.log + inputs). Skipped
# in dry-run so it stays side-effect-free — we just report intent.
if not dry_run and cmd_down(proj, verbose, dry_run=False) != 0:
print(f" {name}: down failed")
# 1. Sync from the relay first — this is what brings the newest commits.log
# and inputs. Runs in both modes so it's always visible; in dry-run it's
# cmd_down's own --dry-run (shows what it would pull, changes nothing).
if cmd_down(proj, verbose, dry_run=dry_run) != 0:
if dry_run:
print(f" {name}: (dry-run) down preview unavailable — continuing")
else:
print(f" {name}: down failed — skipping")
failed.append((name, "down"))
continue