fix: stop command exits

This commit is contained in:
Eli Bosley
2025-01-19 22:11:47 -05:00
parent 89d756ef4e
commit 58f65eabba

View File

@@ -19,5 +19,6 @@ export class StopCommand extends CommandRunner {
this.logger.warn(stderr); this.logger.warn(stderr);
process.exit(1); process.exit(1);
} }
process.exit(0);
} }
} }