From 0cda6c32d93a854f30da2397dee5193134e1437b Mon Sep 17 00:00:00 2001 From: Neeraj Sathish Kumar Date: Sun, 16 Aug 2026 02:25:42 +0530 Subject: [PATCH] fix: install compiler as lql --- cli/internal/commands/query.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/internal/commands/query.go b/cli/internal/commands/query.go index 51269a2..84e9601 100644 --- a/cli/internal/commands/query.go +++ b/cli/internal/commands/query.go @@ -34,7 +34,7 @@ func compileLQL(query string, target string) (string, error) { if exitErr, ok := err.(*exec.ExitError); ok { return "", fmt.Errorf("lql error: %s", strings.TrimSpace(string(exitErr.Stderr))) } - return "", fmt.Errorf("lql binary not found — install with: cargo install loza-lql") + return "", fmt.Errorf("lql binary not found — install with: cargo install lql") } return strings.TrimSpace(string(out)), nil }