fix(gsd): replace empty catch with logWarning for CI compliance
This commit is contained in:
parent
a9fc396043
commit
49ef77e40a
1 changed files with 2 additions and 2 deletions
|
|
@ -499,8 +499,8 @@ async function prepareAndBuildDiscussPrompt(
|
|||
preparationContext = `\n\n## Preparation Context\n\nThe system analyzed the codebase before this discussion. Use these findings as background context — they describe what already exists, NOT what the user wants to build. Always ask the user what they want to build first.\n\n${parts.join("\n\n")}`;
|
||||
}
|
||||
}
|
||||
} catch {
|
||||
// Non-fatal — proceed without preparation context
|
||||
} catch (err) {
|
||||
logWarning("guided", `preparation failed, proceeding without context: ${(err as Error).message}`);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue