1
0
Fork 0
mirror of https://github.com/terribleplan/next.js.git synced 2024-01-19 02:48:18 +00:00

Fix typo in signal message on process close event (#1601)

This commit is contained in:
Kevin Donahue 2017-04-02 23:49:29 -04:00 committed by Arunoda Susiripala
parent 191d65889b
commit f9aa7bdbc1

View file

@ -65,7 +65,7 @@ const startProcess = () => {
if (signal === 'SIGKILL') {
process.exit(137)
}
console.log(`got signal ${signal}, exitting`)
console.log(`got signal ${signal}, exiting`)
process.exit(1)
}
process.exit(0)