Fix type check issues

This commit is contained in:
Reinier Criel 2025-11-03 07:13:36 -08:00
parent 3d98bb5084
commit a2fb94d0f0
8 changed files with 60 additions and 4 deletions

View file

@ -16,4 +16,4 @@ setEcoSystem(ECOSYSTEM_PY);
initializePackageManager(packageManagerName);
const exitCode = await main(argv);
process.exit(exitCode);
process.exit(typeof exitCode === 'number' ? exitCode : 1);