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 0d9ee7c commit a35e9d7Copy full SHA for a35e9d7
src/utils/configure-aws.ts
@@ -292,10 +292,9 @@ export async function configureAwsProfiles(options: {
292
let configModified: boolean | undefined;
293
let credentialsModified: boolean | undefined;
294
295
- const [configNeedsOverride, credentialsNeedsOverride] = await Promise.all([
296
- checkIfConfigNeedsOverride(configSection),
297
- checkIfCredentialsNeedsOverride(credentialsSection),
298
- ]);
+ const configNeedsOverride = checkIfConfigNeedsOverride(configSection);
+ const credentialsNeedsOverride =
+ checkIfCredentialsNeedsOverride(credentialsSection);
299
300
// means sections exist, but we need to check what's inside
301
if (credentialsSection && configSection) {
0 commit comments