From d9e06041836311506eaca7427b9ef11b7fe3fa72 Mon Sep 17 00:00:00 2001 From: Carlos Gutierrez Date: Sun, 4 Jan 2026 22:22:34 -0700 Subject: [PATCH] Ignore Windows binaries in tools/ (#458) Co-authored-by: root --- packages/coding-agent/src/migrations.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/coding-agent/src/migrations.ts b/packages/coding-agent/src/migrations.ts index f5b058ac..7f99774a 100644 --- a/packages/coding-agent/src/migrations.ts +++ b/packages/coding-agent/src/migrations.ts @@ -169,7 +169,7 @@ function checkDeprecatedExtensionDirs(baseDir: string, label: string): string[] // Check if tools/ contains anything other than fd/rg (which are auto-extracted binaries) try { const entries = readdirSync(toolsDir); - const customTools = entries.filter((e) => e !== "fd" && e !== "rg"); + const customTools = entries.filter((e) => e !== "fd" && e !== "rg" && e !== "fd.exe" && e !== "rg.exe"); if (customTools.length > 0) { warnings.push( `${label} tools/ directory contains custom tools. Custom tools have been merged into extensions.`,