You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
'--show-error', -- Show errors, even though we're using --silent
'--create-dirs',
'--output',
download.lib_path,
url,
I am fairly certain that curl requires the --clobber option explicitly passed to be able to overwrite a file if it exists.
Noting this here in case the issue of updating blink resulting in neovim crashing due to the file download failing is hitting this codepath. Such as in:
It looks like curl 8.11.0 will overwrite without asking for permission, tested with curl --output test https://example.com. If curl was failing, it should get caught by the .code ~= 0 check. Thanks for looking into this though, I'm still stumped on it :/
blink.cmp/lua/blink/cmp/fuzzy/download.lua
Lines 130 to 138 in 68ba8ae
I am fairly certain that
curl
requires the--clobber
option explicitly passed to be able to overwrite a file if it exists.Noting this here in case the issue of updating
blink
resulting in neovim crashing due to the file download failing is hitting this codepath. Such as in:#115
#68
The text was updated successfully, but these errors were encountered: