()
| 16 | }) |
| 17 | |
| 18 | function getIsBubblewrapSandbox(): boolean { |
| 19 | return ( |
| 20 | process.platform === 'linux' && |
| 21 | isEnvTruthy(process.env.CLAUDE_CODE_BUBBLEWRAP) |
| 22 | ) |
| 23 | } |
| 24 | |
| 25 | // Cache for the runtime musl detection fallback (node/unbundled only). |
| 26 | // In native linux builds, feature flags resolve this at compile time, so the |
nothing calls this directly
no test coverage detected