fix: do not process.exit on restart or stop command

This commit is contained in:
Eli Bosley
2025-02-04 13:49:08 -05:00
parent 133c8e0d70
commit e16763b49b
2 changed files with 0 additions and 2 deletions

View File

@@ -39,6 +39,5 @@ export class RestartCommand extends CommandRunner {
}
process.exit(1);
}
process.exit(0);
}
}

View File

@@ -15,6 +15,5 @@ export class StopCommand extends CommandRunner {
if (stderr) {
process.exit(1);
}
process.exit(0);
}
}