Skip to content

Commit

Permalink
fix(scripts): spawn util minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
dangreen committed Mar 10, 2024
1 parent cef08e7 commit 982ac6e
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion packages/scripts/src/utils/spawn.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ export function spawn(cmd, args, stdio = true) {
child.stdout?.on('data', onData)
child.stderr?.on('data', onData)
child.on('close', onDone)
child.on('exit', onDone)
child.on('error', onDone)
})
}

0 comments on commit 982ac6e

Please sign in to comment.