-
Notifications
You must be signed in to change notification settings - Fork 21
Error during download, exit code: 23 #78
Comments
I could reproduce that issue on my phone using termux but it seems that it's caused by missing write access for creating the dump file (by default in tmp directory) used by curl when using the EDIT: I think that should be plenary issue (nvim-lua/plenary.nvim#536) |
In my case, I'm seeing the "plenary_curl_xxxxxxxx.headers" files being created in my dir set by |
It definitely has to do with the URL. If I replace it with something simple like https://postman-echo.com/get, I get no error. I'm guessing it has to do with the fact that https://devdocs.io/docs.json is a redirect, but I'm not sure how it was ever working, then. |
But plenary include |
@gabeklavans check if you get the error with:
In my case the
However with
I don't get the error Disabling the compression in the plenary calls fixes the issue for me |
It seems to be related to this issue: curl/curl#13209 |
Every time the plugin tries to use
curl
to download something, it throws an error fromcurl
I'm using Linux, OpenSUSE Tumbleweed, so I have a pretty up to date
curl
and no weird installations.Even manually trying to download anything from devdocs.io, such as with
curl https://devdocs.io/docs.json -o registery.json
, just returns an empty output.Replacing
curl
withwget
in my command line, and the download happens as intended. This isn't a solution, though, since all the downloads in this plugin use curl, so manually placing everything everytime would be kind of annoying.Adding the
-sSL
flag to mycurl
command also allows the download to succeed.Version:
The text was updated successfully, but these errors were encountered: