aboutsummaryrefslogtreecommitdiffstats
path: root/CUSTOM_SERVERS.md
diff options
context:
space:
mode:
authorWilliam Boman <william@redwill.se>2021-08-22 08:50:27 +0200
committerWilliam Boman <william@redwill.se>2021-08-22 08:57:04 +0200
commitb0e701f8493240942003e773059fce229b103b57 (patch)
treed1ed9238de75ac487b4fe9abc430f73e3a532879 /CUSTOM_SERVERS.md
parentBump Haskell Language Server to version 1.3.0 (#59) (diff)
downloadmason-b0e701f8493240942003e773059fce229b103b57.tar
mason-b0e701f8493240942003e773059fce229b103b57.tar.gz
mason-b0e701f8493240942003e773059fce229b103b57.tar.bz2
mason-b0e701f8493240942003e773059fce229b103b57.tar.lz
mason-b0e701f8493240942003e773059fce229b103b57.tar.xz
mason-b0e701f8493240942003e773059fce229b103b57.tar.zst
mason-b0e701f8493240942003e773059fce229b103b57.zip
replace all usage of curl(1) with wget(1)
Diffstat (limited to 'CUSTOM_SERVERS.md')
-rw-r--r--CUSTOM_SERVERS.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/CUSTOM_SERVERS.md b/CUSTOM_SERVERS.md
index c08a536f..4e1614ce 100644
--- a/CUSTOM_SERVERS.md
+++ b/CUSTOM_SERVERS.md
@@ -92,7 +92,7 @@ available installers that are available out of the box.
local shell = require "nvim-lsp-installer.installers.shell"
shell.raw [[
- curl -fLO https://github.com/fwcd/kotlin-language-server/releases/latest/download/server.zip;
+ wget -O server.zip https://github.com/fwcd/kotlin-language-server/releases/latest/download/server.zip;
unzip server.zip;
rm server.zip;
]]