Handle process exit better + some PR cleanup

This commit is contained in:
Sander Declerck 2025-10-01 08:53:56 +02:00
parent bf97f089ca
commit 67304751bd
No known key found for this signature in database
8 changed files with 21 additions and 9 deletions

View file

@ -27,5 +27,5 @@ export async function main(args) {
await proxy.stopServer();
proxy.verifyNoMaliciousPackages();
process.exit(result.status);
return result.status;
}