()
| 372 | * relative path math from the compiled main bundle. |
| 373 | */ |
| 374 | const resolveSourceIconPath = (): string => |
| 375 | app.isPackaged |
| 376 | ? join(process.resourcesPath, "icon.png") |
| 377 | : join(app.getAppPath(), "build", "icon.png"); |
| 378 | |
| 379 | const resolveLinuxIcon = (): string | undefined => { |
| 380 | if (process.platform !== "linux") return undefined; |
no outgoing calls
no test coverage detected