fix(coding-agent): correct Termux package name for fd (#1433)

The fd package is named 'fd' in Termux, not 'fd-find'.

fixes termux package name
This commit is contained in:
PriNova 2026-02-12 17:26:55 +01:00 committed by GitHub
parent 34878e7cc8
commit 7ddb7c67a8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -192,7 +192,7 @@ async function downloadTool(tool: "fd" | "rg"): Promise<string> {
// Termux package names for tools
const TERMUX_PACKAGES: Record<string, string> = {
fd: "fd-find",
fd: "fd",
rg: "ripgrep",
};