Skip to content

Commit c917ced

Browse files
committed
Sync from local-mgr (gold v17.01.00)
1 parent 1a85f28 commit c917ced

1 file changed

Lines changed: 8 additions & 0 deletions

File tree

.devcontainer/create_codespaces_mgr.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,12 @@
6464
".git", "venv", ".venv", "__pycache__", "logs", ".DS_Store", ".devcontainer",
6565
}
6666

67+
# Curated files that live inside an otherwise-excluded directory (e.g. logs/) — copied
68+
# individually after the main sync since COPY_EXCLUDES skips their parent wholesale.
69+
EXTRA_FILES = [
70+
"samples/basic_demo_logic_gov/logs/als-sample.log",
71+
]
72+
6773
# ── helpers ──────────────────────────────────────────────────────────────────
6874

6975
def ignore_fn(dir_, names):
@@ -175,6 +181,8 @@ def main():
175181
print("Step 1: Syncing scoped subset...")
176182
for p in SYNC_PATHS:
177183
copy_path(SRC_ROOT / p, target / p, dry_run)
184+
for f in EXTRA_FILES:
185+
copy_path(SRC_ROOT / f, target / f, dry_run)
178186

179187
if dry_run:
180188
print("\nDry run complete — no overrides applied.")

0 commit comments

Comments
 (0)