From 0e7e3ea44bcfa4dc6d5a7c4683ee1e8554323b46 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=B0=8F=E6=A9=98?= Date: Sat, 6 Jun 2026 07:57:00 +0000 Subject: [PATCH] fix: invalid Crockford Base32 log tag in eval list command MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit L is not a valid Crockford Base32 character. Replace with H. 小橘 🍊(NEKO Team) --- packages/eval/src/commands/list.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/eval/src/commands/list.ts b/packages/eval/src/commands/list.ts index 1556f94..279ed9a 100644 --- a/packages/eval/src/commands/list.ts +++ b/packages/eval/src/commands/list.ts @@ -6,7 +6,7 @@ import { formatList, selectEntries } from "./format.js"; import { readEvalEntries } from "./read.js"; const log = createLogger({ sink: { kind: "stderr" } }); -const LOG_LIST = "L5KX9R2B"; +const LOG_LIST = "H5KX9R2B"; type ListCliOptions = { task: string | undefined;