Return the path printed by `lean --print-prefix`.
()
| 40 | |
| 41 | @lru_cache(maxsize=1) |
| 42 | def lean_prefix() -> Path: |
| 43 | """Return the path printed by `lean --print-prefix`.""" |
| 44 | return Path(run_command(["lean", "--print-prefix"])) |
| 45 | |
| 46 | |
| 47 | def bundle_dir() -> Path | None: |
no test coverage detected