()
| 100 | } |
| 101 | |
| 102 | function resolveCwdOverride(): string | undefined { |
| 103 | const raw = process.env.XCODEBUILDMCP_CWD; |
| 104 | if (!raw) { |
| 105 | return undefined; |
| 106 | } |
| 107 | return expandHomePrefix(raw); |
| 108 | } |
| 109 | |
| 110 | export async function bootstrapRuntime( |
| 111 | opts: BootstrapRuntimeOptions, |
no test coverage detected