()
| 26 | |
| 27 | |
| 28 | def _resolve_isaaclab_root() -> Path: |
| 29 | env_root = os.environ.get("ISAACLAB_ROOT") |
| 30 | if env_root: |
| 31 | return Path(env_root).expanduser().resolve() |
| 32 | return (Path.home() / "IsaacLab").resolve() |
| 33 | |
| 34 | |
| 35 | def _ensure_default_task(argv: list[str]) -> list[str]: |