Skip to content

Commit

Permalink
node v20 complains of invalid arguments (#280)
Browse files Browse the repository at this point in the history
Co-authored-by: Elio Capella <elio.capella@filestage.io>
  • Loading branch information
eliOcs and eliocapella authored Nov 18, 2024
1 parent d37569f commit fa6aa02
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/preload/soft-exit.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
'use strict'

process.on('SIGINT', process.exit)
process.on('SIGTERM', process.exit)
process.on('SIGINT', () => process.exit())
process.on('SIGTERM', () => process.exit())

0 comments on commit fa6aa02

Please sign in to comment.