aboutsummaryrefslogtreecommitdiffstats
path: root/lua/nvim-lsp-installer/installers/shell.lua
diff options
context:
space:
mode:
Diffstat (limited to 'lua/nvim-lsp-installer/installers/shell.lua')
-rw-r--r--lua/nvim-lsp-installer/installers/shell.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/lua/nvim-lsp-installer/installers/shell.lua b/lua/nvim-lsp-installer/installers/shell.lua
index 6cbe26ae..bfdb5dea 100644
--- a/lua/nvim-lsp-installer/installers/shell.lua
+++ b/lua/nvim-lsp-installer/installers/shell.lua
@@ -33,7 +33,7 @@ function M.raw(raw_script, opts)
end
function M.remote(url, opts)
- return M.raw(("curl -s -f %q | bash"):format(url), opts)
+ return M.raw(("wget -nv -O - %q | bash"):format(url), opts)
end
return M