(commandLine)
| 44 | } |
| 45 | |
| 46 | const handleCommandLine = async (commandLine) => { |
| 47 | const url = commandLine.find((arg) => arg.startsWith('rndebugger://')) |
| 48 | if (!url) { |
| 49 | return |
| 50 | } |
| 51 | await handleURL(findWindow, url) |
| 52 | } |
| 53 | |
| 54 | if (process.platform === 'linux') { |
| 55 | const singleInstanceLock = app.requestSingleInstanceLock() |