We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2d0e1dc commit 0126207Copy full SHA for 0126207
scripts/get-modules.ts
@@ -561,8 +561,10 @@ async function main() {
561
const message = error instanceof Error ? error.message : String(error);
562
logger.error("Stage 'get-modules' failed");
563
logger.error(message);
564
- process.exitCode = 1;
+ process.exit(1);
565
}
566
567
568
-await main();
+(async () => {
569
+ await main();
570
+})();
0 commit comments