From c637553b5f9524b1f447978b24315b44207d57a7 Mon Sep 17 00:00:00 2001 From: Danny Kim Date: Mon, 14 Sep 2026 16:52:00 +0900 Subject: [PATCH] Skip empty login status comment --- run.ts | 3 --- 1 file changed, 3 deletions(-) diff --git a/run.ts b/run.ts index 19e4979..e313484 100644 --- a/run.ts +++ b/run.ts @@ -241,9 +241,6 @@ async function codexDeviceLogin(): Promise { 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 {