Merge pull request #510 from mitsuhiko/annotate-bridge-prompt

Annotate bridge prompt
This commit is contained in:
Mario Zechner 2026-01-06 23:47:02 +01:00 committed by GitHub
commit 03e3f0d801
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
9 changed files with 116 additions and 13 deletions

View file

@ -368,7 +368,7 @@ export async function main(args: string[]) {
if (parsed.export) {
try {
const outputPath = parsed.messages.length > 0 ? parsed.messages[0] : undefined;
const result = exportFromFile(parsed.export, outputPath);
const result = await exportFromFile(parsed.export, outputPath);
console.log(`Exported to: ${result}`);
return;
} catch (error: unknown) {