Closed psrb closed 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'.
:open_mouth: Thanks for the fix! Edit: Reference that process.exitCode is preferred can be found in the node docs.
process.exitCode
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'.