Skip empty login status comment
Check / deno (pull_request) Successful in 33s

This commit is contained in:
2026-09-14 16:52:00 +09:00
parent 743c60e8a5
commit c637553b5f
-3
View File
@@ -241,9 +241,6 @@ async function codexDeviceLogin(): Promise<void> {
await new Promise((resolve) => setTimeout(resolve, 3000));
await postComment(shown);
await Promise.all([login.status, drained]);
const status = await new Deno.Command("codex", { args: ["login", "status"] })
.output();
await postComment(new TextDecoder().decode(status.stdout));
}
async function runCodex(prompt: string): Promise<string> {