@karmaniverous/get-dotenv 2.6.2 → 2.6.3
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.
- package/bin/getdotenv/index.js +1 -4
- package/package.json +1 -1
package/bin/getdotenv/index.js
CHANGED
|
@@ -146,10 +146,7 @@ await getDotenv({
|
|
|
146
146
|
});
|
|
147
147
|
|
|
148
148
|
// Get AWS SSO credentials.
|
|
149
|
-
if (awsSsoProfile)
|
|
150
|
-
const profile = dotenvExpand(awsSsoProfile);
|
|
151
|
-
if (profile) getAwsSsoCredentials(profile);
|
|
152
|
-
}
|
|
149
|
+
if (awsSsoProfile) getAwsSsoCredentials(dotenvExpand(awsSsoProfile));
|
|
153
150
|
|
|
154
151
|
// Execute shell command.
|
|
155
152
|
if (command || program.args.length) {
|