@karmaniverous/get-dotenv 2.6.7 → 2.6.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -146,7 +146,8 @@ await getDotenv({
146
146
  });
147
147
 
148
148
  // Get AWS SSO credentials.
149
- if (awsSsoProfile) getAwsSsoCredentials(dotenvExpand(awsSsoProfile));
149
+ const profile = dotenvExpand(awsSsoProfile);
150
+ if (profile) getAwsSsoCredentials(profile);
150
151
 
151
152
  // Execute shell command.
152
153
  if (command || program.args.length) {
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "bin": {
4
4
  "getdotenv": "bin/getdotenv/index.js"
5
5
  },
6
- "version": "2.6.7",
6
+ "version": "2.6.8",
7
7
  "publishConfig": {
8
8
  "access": "public"
9
9
  },