BuggyOrg / lisgy

1 stars 1 forks source link

(fix) Incomplete output as child process on macOS #21

Closed psrb closed 7 years ago

psrb commented 7 years ago

The call 'process.exit(0)' led to an early termination of the process leaving an incomplete write on stdout. The preferred way of setting the exit code is through 'process.exitCode = 0'.

leMaik commented 7 years ago

:open_mouth: Thanks for the fix! Edit: Reference that process.exitCode is preferred can be found in the node docs.