Skip to content

Commit

Permalink
Electron stdio pipe (#43)
Browse files Browse the repository at this point in the history
  • Loading branch information
MatthijsBurgh authored Apr 5, 2023
1 parent f9fbc0a commit 1aef4c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -484,7 +484,7 @@ module.exports = (api, options) => {
info('Launching Electron...')
}

const stdioConfig = ['inherit', 'inherit', 'inherit']
const stdioConfig = ['pipe', 'pipe', 'pipe']

// Use an IPC on Windows for graceful exit
if (process.platform === 'win32') stdioConfig.push('ipc')
Expand Down

0 comments on commit 1aef4c8

Please sign in to comment.