()
| 50 | // ─── Path helpers ───────────────────────────────────────────────────────────── |
| 51 | |
| 52 | export function getEmbeddedPythonDir(): string { |
| 53 | if (app.isPackaged) return join(process.resourcesPath, 'python-embed') |
| 54 | return join(app.getAppPath(), 'resources', 'python-embed') |
| 55 | } |
| 56 | |
| 57 | export function getEmbeddedPythonExe(): string { |
| 58 | const dir = getEmbeddedPythonDir() |
no outgoing calls
no test coverage detected