diff options
| author | William Boman <william@redwill.se> | 2021-10-06 10:41:42 +0200 |
|---|---|---|
| committer | William Boman <william@redwill.se> | 2021-10-06 10:41:50 +0200 |
| commit | b4144c7a304d55bc6241e4a576c51f48abbb869a (patch) | |
| tree | e8790551d3007395e0212b6c2d313b73f92adee5 /lua/nvim-lsp-installer/installers/shell.lua | |
| parent | ltex/configure: early return instead to avoid indentation (diff) | |
| download | mason-b4144c7a304d55bc6241e4a576c51f48abbb869a.tar mason-b4144c7a304d55bc6241e4a576c51f48abbb869a.tar.gz mason-b4144c7a304d55bc6241e4a576c51f48abbb869a.tar.bz2 mason-b4144c7a304d55bc6241e4a576c51f48abbb869a.tar.lz mason-b4144c7a304d55bc6241e4a576c51f48abbb869a.tar.xz mason-b4144c7a304d55bc6241e4a576c51f48abbb869a.tar.zst mason-b4144c7a304d55bc6241e4a576c51f48abbb869a.zip | |
windows: add -UseBasicParsing for iwr calls
Because otherwise it... tries to.. use Internet Explorer??
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 0e57cf0d..752a216c 100644 --- a/lua/nvim-lsp-installer/installers/shell.lua +++ b/lua/nvim-lsp-installer/installers/shell.lua @@ -78,7 +78,7 @@ function M.powershell(raw_script, opts) end function M.remote_powershell(url, opts) - return M.powershell(("iwr %q -useb | iex"):format(url), opts) + return M.powershell(("iwr -UseBasicParsing %q | iex"):format(url), opts) end function M.polyshell(raw_script, opts) |
