Skip to content

Commit

Permalink
fix: prebuilt binary error message always firing
Browse files Browse the repository at this point in the history
  • Loading branch information
Saghen committed Dec 23, 2024
1 parent c36b60c commit cab0e8e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lua/blink/cmp/fuzzy/download/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ function download.ensure_downloaded(callback)

-- not built locally, not on a git tag, error
assert(
false and version.current.sha ~= nil or target_git_tag ~= nil,
version.current.sha ~= nil or target_git_tag ~= nil,
"\nDetected an out of date or missing fuzzy matching library. Can't download from github due to not being on a git tag and no `fuzzy.prebuilt_binaries.force_version` is set."
.. '\nEither run `cargo build --release` via your package manager, switch to a git tag, or set `fuzzy.prebuilt_binaries.force_version` in config. '
.. 'See the docs for more info.'
Expand Down

0 comments on commit cab0e8e

Please sign in to comment.