Skip to content

Commit

Permalink
Update index.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
MikesGlitch authored Sep 22, 2024
1 parent 92320bc commit b3088f4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/desktop-electron/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,11 +54,11 @@ if (isDev) {
}

function createBackgroundProcess() {
const defaultOptions = { stdio: 'pipe', allowLoadingUnsignedLibraries: true }
const defaultOptions = { stdio: 'pipe', allowLoadingUnsignedLibraries: true };
serverProcess = utilityProcess.fork(
__dirname + '/server.js',
['--subprocess', app.getVersion()],
isDev ? { ...defaultOptions, execArgv: ['--inspect'] } : defaultOptions,
isDev ? { ...defaultOptions, execArgv: ['--inspect'] } : defaultOptions

Check warning on line 61 in packages/desktop-electron/index.ts

View workflow job for this annotation

GitHub Actions / lint

Insert `,`
);

serverProcess.stdout?.on('data', (chunk: Buffer) => {
Expand Down

0 comments on commit b3088f4

Please sign in to comment.