Skip to content

Commit

Permalink
chore: remove SIGKILL handlers
Browse files Browse the repository at this point in the history
they cause error in Linux as SIGKILL cannot be caught
  • Loading branch information
KisaragiEffective committed Jul 14, 2024
1 parent 722acf5 commit 0f28bce
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion packages/misskey-bubble-game/build.js
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,6 @@ async function watchSrc() {
process.on('SIGHUP', resolve);
process.on('SIGINT', resolve);
process.on('SIGTERM', resolve);
process.on('SIGKILL', resolve);
process.on('uncaughtException', reject);
process.on('exit', resolve);
}).finally(async () => {
Expand Down
1 change: 0 additions & 1 deletion packages/misskey-js/build.js
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,6 @@ async function watchSrc() {
process.on('SIGHUP', resolve);
process.on('SIGINT', resolve);
process.on('SIGTERM', resolve);
process.on('SIGKILL', resolve);
process.on('uncaughtException', reject);
process.on('exit', resolve);
}).finally(async () => {
Expand Down
1 change: 0 additions & 1 deletion packages/misskey-reversi/build.js
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,6 @@ async function watchSrc() {
process.on('SIGHUP', resolve);
process.on('SIGINT', resolve);
process.on('SIGTERM', resolve);
process.on('SIGKILL', resolve);
process.on('uncaughtException', reject);
process.on('exit', resolve);
}).finally(async () => {
Expand Down

0 comments on commit 0f28bce

Please sign in to comment.