aboutsummaryrefslogtreecommitdiffstats
path: root/lua/nvim-lsp-installer/installers/shell.lua
diff options
context:
space:
mode:
authorWilliam Boman <william@redwill.se>2022-02-16 23:21:55 +0100
committerGitHub <noreply@github.com>2022-02-16 23:21:55 +0100
commitfd417d0b2c35c12706b92ee6037c0223ebf77f07 (patch)
tree37d948516d472810674b04377c0923bb3925a9a4 /lua/nvim-lsp-installer/installers/shell.lua
parentadd labels to issue templates (diff)
downloadmason-fd417d0b2c35c12706b92ee6037c0223ebf77f07.tar
mason-fd417d0b2c35c12706b92ee6037c0223ebf77f07.tar.gz
mason-fd417d0b2c35c12706b92ee6037c0223ebf77f07.tar.bz2
mason-fd417d0b2c35c12706b92ee6037c0223ebf77f07.tar.lz
mason-fd417d0b2c35c12706b92ee6037c0223ebf77f07.tar.xz
mason-fd417d0b2c35c12706b92ee6037c0223ebf77f07.tar.zst
mason-fd417d0b2c35c12706b92ee6037c0223ebf77f07.zip
fix(powershell): set security protocol to TLS1.2 (#487)
Fixes #480.
Diffstat (limited to 'lua/nvim-lsp-installer/installers/shell.lua')
-rw-r--r--lua/nvim-lsp-installer/installers/shell.lua5
1 files changed, 4 insertions, 1 deletions
diff --git a/lua/nvim-lsp-installer/installers/shell.lua b/lua/nvim-lsp-installer/installers/shell.lua
index 62506155..e9bef862 100644
--- a/lua/nvim-lsp-installer/installers/shell.lua
+++ b/lua/nvim-lsp-installer/installers/shell.lua
@@ -79,7 +79,10 @@ function M.powershell(raw_script, opts)
local default_opts = {
env = {},
-- YIKES https://stackoverflow.com/a/63301751
- prefix = "$ProgressPreference = 'SilentlyContinue';",
+ prefix = [[
+ $ProgressPreference = 'SilentlyContinue';
+ [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12;
+ ]],
}
opts = vim.tbl_deep_extend("force", default_opts, opts or {})