mirror of
https://github.com/getcompanion-ai/co-mono.git
synced 2026-04-15 06:04:40 +00:00
Ignore Windows binaries in tools/ (#458)
Co-authored-by: root <root@WIN11.localdomain>
This commit is contained in:
parent
74d5f5523e
commit
d9e0604183
1 changed files with 1 additions and 1 deletions
|
|
@ -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.`,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue