mirror of
https://github.com/sst/opencode.git
synced 2025-12-23 10:11:41 +00:00
fix: wait for stdout to flush in generate command (#3821)
This commit is contained in:
parent
901aae09f7
commit
7652a96064
1 changed files with 9 additions and 1 deletions
|
|
@ -5,6 +5,14 @@ export const GenerateCommand = {
|
|||
command: "generate",
|
||||
handler: async () => {
|
||||
const specs = await Server.openapi()
|
||||
process.stdout.write(JSON.stringify(specs, null, 2))
|
||||
const json = JSON.stringify(specs, null, 2)
|
||||
|
||||
// Wait for stdout to finish writing before process.exit() is called
|
||||
await new Promise<void>((resolve, reject) => {
|
||||
process.stdout.write(json, (err) => {
|
||||
if (err) reject(err)
|
||||
else resolve()
|
||||
})
|
||||
})
|
||||
},
|
||||
} satisfies CommandModule
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue