diff options
| author | William Boman <william@redwill.se> | 2021-08-22 08:50:27 +0200 |
|---|---|---|
| committer | William Boman <william@redwill.se> | 2021-08-22 08:57:04 +0200 |
| commit | b0e701f8493240942003e773059fce229b103b57 (patch) | |
| tree | d1ed9238de75ac487b4fe9abc430f73e3a532879 /lua/nvim-lsp-installer/installers/shell.lua | |
| parent | Bump Haskell Language Server to version 1.3.0 (#59) (diff) | |
| download | mason-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 'lua/nvim-lsp-installer/installers/shell.lua')
| -rw-r--r-- | lua/nvim-lsp-installer/installers/shell.lua | 2 |
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 |
