Skip to content
This repository was archived by the owner on May 16, 2020. It is now read-only.

Commit 39c7609

Browse files
fix(atlauncher-scripts): fix issue with processes exiting right away
1 parent 7d73a46 commit 39c7609

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/atlauncher-scripts/utils.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ function spawnSyncProcess(processes = [], workingDirectory) {
118118
processesToRun.forEach((processToRun) => {
119119
console.log(colors.green(`Running 'node ${processToRun.join(' ')}'\n`));
120120

121-
const result = spawn('node', processToRun, {
121+
const result = spawn.sync('node', processToRun, {
122122
stdio: 'inherit',
123123
cwd: workingDirectory,
124124
});

0 commit comments

Comments
 (0)