fix: update 'cwd' to 'working_dir' in run specifications for consistency

This commit is contained in:
2026-02-21 01:34:56 -08:00
parent bb367ab632
commit bb9fbd8ca4
7 changed files with 18 additions and 16 deletions

View File

@@ -28,7 +28,7 @@ def run_sync(args: argparse.Namespace) -> int:
all_ok = True
synced_dirs: set[Path] = set()
for name, manifest in config.components.items():
cwd = manifest.run.cwd if manifest.run else None
cwd = manifest.run.working_dir if manifest.run else None
working_dir = cwd or name
project_dir = config.root / working_dir
pyproject = project_dir / "pyproject.toml"