We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c7eead8 commit ecaedf8Copy full SHA for ecaedf8
src/assets/__tests__/__snapshots__/assets.snapshot.test.ts.snap
@@ -80,7 +80,10 @@ async function main() {
80
app.synth();
81
}
82
83
-main();
+main().catch((error: unknown) => {
84
+ console.error('AgentCore CDK synthesis failed:', error instanceof Error ? error.message : error);
85
+ process.exitCode = 1;
86
+});
87
"
88
`;
89
src/assets/cdk/bin/cdk.ts
@@ -47,4 +47,7 @@ async function main() {
47
48
49
50
51
52
53
0 commit comments