This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

properly exit script

+2 -2
+2 -2
src/index.ts
··· 48 48 // Check for empty environment variables and abort if needed 49 49 if (!process.env.BLUESKY_USERNAME || !process.env.BLUESKY_PASSWORD) { 50 50 console.error( 51 - "Missing required environment variables: BLUESKY_USERNAME and BLUESKY_PASSWORD. Aborting script." 51 + "Missing required environment variables: BLUESKY_USERNAME and BLUESKY_PASSWORD.\nAborting script." 52 52 ); 53 - return; 53 + process.exit(1); 54 54 } 55 55 56 56 console.log("Environment variables loaded successfully.");