Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cli/internal/commands/query.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
Expand Down
Loading