Skip to content

Commit

Permalink
Fix passing custom options to Electron app in ./run ide watch (#6020)
Browse files Browse the repository at this point in the history
  • Loading branch information
vitvakatu authored Mar 21, 2023
1 parent c7da4df commit 210b5b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/ide-desktop/lib/client/watch.ts
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ await fs.symlink(
'dir'
)

const ELECTRON_ARGS = [path.join(IDE_DIR_PATH, 'index.cjs'), '--', ...process.argv.slice(2)]
const ELECTRON_ARGS = [path.join(IDE_DIR_PATH, 'index.cjs'), ...process.argv.slice(2)]

process.on('SIGINT', () => {
console.log('SIGINT received. Exiting.')
Expand Down

0 comments on commit 210b5b7

Please sign in to comment.