()
| 30 | } |
| 31 | |
| 32 | export const bundledExecutorPath = (): string => |
| 33 | join( |
| 34 | process.resourcesPath, |
| 35 | "executor", |
| 36 | process.platform === "win32" ? "executor.exe" : "executor", |
| 37 | ); |
| 38 | |
| 39 | const executorAvailable = (): boolean => app.isPackaged && existsSync(bundledExecutorPath()); |
| 40 |
no outgoing calls
no test coverage detected