From 58f65eabbae24d485b8fb5de7e4b72c06edb3e8c Mon Sep 17 00:00:00 2001 From: Eli Bosley Date: Sun, 19 Jan 2025 22:11:47 -0500 Subject: [PATCH] fix: stop command exits --- api/src/unraid-api/cli/stop.command.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/api/src/unraid-api/cli/stop.command.ts b/api/src/unraid-api/cli/stop.command.ts index 4841821a1..bf5ec3770 100644 --- a/api/src/unraid-api/cli/stop.command.ts +++ b/api/src/unraid-api/cli/stop.command.ts @@ -19,5 +19,6 @@ export class StopCommand extends CommandRunner { this.logger.warn(stderr); process.exit(1); } + process.exit(0); } }