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 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)