We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e1d923d commit 62d7aceCopy full SHA for 62d7ace
src/renderer/actions/apps/electron/index.js
@@ -42,9 +42,10 @@ export class Electron {
42
// const debugPort = await getPort({ port: proxyPort });
43
const debugPort = proxyPort;
44
const { pathToApplication } = options;
45
- const cmd = isAppBundle(pathToApplication)
46
- ? await findExecutableInApp(pathToApplication)
47
- : pathToApplication;
+ // const cmd = isAppBundle(pathToApplication)
+ // ? await findExecutableInApp(pathToApplication)
+ // : pathToApplication;
48
+ const cmd = await findExecutableInApp(pathToApplication);
49
const appProcess = spawn(cmd, [`--inspect-brk=${debugPort}`], {
50
stdio: "inherit",
51
env: Object.assign(
0 commit comments