From 4d63e78d2c2dbf7c1936ecd189003a8b53823ae5 Mon Sep 17 00:00:00 2001 From: Oliver-Akins Date: Thu, 7 Jan 2021 12:36:33 -0700 Subject: [PATCH] Actually exit the process when done cleaning up --- server/src/utils/cleanup.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/server/src/utils/cleanup.ts b/server/src/utils/cleanup.ts index ee4f8f3..74b44f8 100644 --- a/server/src/utils/cleanup.ts +++ b/server/src/utils/cleanup.ts @@ -23,6 +23,7 @@ export function processExit() { }; }; log.info(`Done cleaning up games`); + process.exit(); };