Skip to content

Commit f6da848

Browse files
committed
Release Preparation for V1.8.0
1 parent 8fc2153 commit f6da848

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/common/construct-utils.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ export async function prevalidateSecrets(pattern: string, region?: string, ...se
2727
try {
2828
await utils.validateSecret(secret, region ?? process.env.CDK_DEFAULT_REGION!);
2929
}
30-
catch(error) {
31-
throw new Error(`${secret} secret must be setup for the ${pattern} pattern to work`);
30+
catch(_error) {
31+
throw new Error(`${secret} secret must be setup for the ${pattern} pattern to work` + _error);
3232
}
3333
}
3434
}

0 commit comments

Comments
 (0)