Every time the plugin tries to use curl to download something, it throws an error from curl
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.
➜ devdocs curl https://devdocs.io/docs.json -o registery.json
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
Replacing curl with wget 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 my curl command also allows the download to succeed.
Version:
curl --version
curl 8.7.1 (x86_64-suse-linux-gnu) libcurl/8.7.1 OpenSSL/3.1.4 zlib/1.3.1 brotli/1.1.0 zstd/1.5.6 libidn2/2.3.7 libpsl/0.21.5 libssh/0.10.6/openssl/zlib nghttp2/1.61.0 OpenLDAP/2.6.6
Release-Date: 2024-03-27
Protocols: dict file ftp ftps gopher gophers http https imap imaps ipfs ipns ldap ldaps mqtt pop3 pop3s rtsp scp sftp smb smbs smtp smtps telnet tftp
Features: alt-svc AsynchDNS brotli GSS-API HSTS HTTP2 HTTPS-proxy IDN IPv6 Kerberos Largefile libz NTLM PSL SPNEGO SSL threadsafe TLS-SRP UnixSockets zstd
Every time the plugin tries to use
curlto download something, it throws an error fromcurlI'm using Linux, OpenSUSE Tumbleweed, so I have a pretty up to date
curland 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
curlwithwgetin 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
-sSLflag to mycurlcommand also allows the download to succeed.Version: