Adding
This commit is contained in:
+8
-4
@@ -6221,10 +6221,14 @@ def cmd_auto(
|
|||||||
name = proj.name
|
name = proj.name
|
||||||
print(f"\n--- {name} ---")
|
print(f"\n--- {name} ---")
|
||||||
|
|
||||||
# 1. Sync from the relay (brings the newest commits.log + inputs). Skipped
|
# 1. Sync from the relay first — this is what brings the newest commits.log
|
||||||
# in dry-run so it stays side-effect-free — we just report intent.
|
# and inputs. Runs in both modes so it's always visible; in dry-run it's
|
||||||
if not dry_run and cmd_down(proj, verbose, dry_run=False) != 0:
|
# cmd_down's own --dry-run (shows what it would pull, changes nothing).
|
||||||
print(f" {name}: down failed")
|
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"))
|
failed.append((name, "down"))
|
||||||
continue
|
continue
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user