(settings: SandboxSettings)
| 557 | } |
| 558 | |
| 559 | function buildShellInitScript(settings: SandboxSettings): string { |
| 560 | return (settings.shellInit ?? []).filter(Boolean).join(" && "); |
| 561 | } |
| 562 | |
| 563 | function getSandboxUnsupportedReason(): string | null { |
| 564 | if (process.platform !== "darwin" || process.arch !== "arm64") { |
no outgoing calls
no test coverage detected