Skip to content

Commit

Permalink
remove commented env merge (#126)
Browse files Browse the repository at this point in the history
  • Loading branch information
gwleuverink authored Nov 12, 2024
1 parent d0b2dfc commit 483dfe3
Showing 1 changed file with 1 addition and 8 deletions.
9 changes: 1 addition & 8 deletions resources/js/electron-plugin/src/server/childProcess.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,7 @@ const { spawn } = require('child_process')

const proc = spawn(
process.argv[2],
process.argv.slice(3),
{
// cwd: options.cwd,
// env: {
// ...process.env,
// ...options.env
// },
}
process.argv.slice(3)
);

process.parentPort.on('message', (message) => {
Expand Down

0 comments on commit 483dfe3

Please sign in to comment.