Skip to content

Commit

Permalink
Fix Windows client restart (#526)
Browse files Browse the repository at this point in the history
  • Loading branch information
jkcdarunday authored Jan 7, 2025
1 parent efe1e81 commit 6d69934
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion subsystems/sidecar/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -488,7 +488,7 @@ class Sidecar extends ReadyResource {
if (platform === false) {
const { dir, cwd, cmdArgs, env } = client.userData.state
const appling = client.userData.state.appling
const opts = { cwd, env, detached: false, stdio: 'ignore' }
const opts = { cwd, env, detached: false, stdio: 'pipe' }
if (!client.closed) {
await new Promise((resolve) => {
if (client.closed) {
Expand Down

0 comments on commit 6d69934

Please sign in to comment.