aboutsummaryrefslogtreecommitdiffstats
path: root/lua
diff options
context:
space:
mode:
authorWilliam Boman <william@redwill.se>2021-11-07 14:35:03 +0100
committerWilliam Boman <william@redwill.se>2021-11-07 14:35:03 +0100
commit519338579f0e56c893afdaa5ac117678e2d8edc7 (patch)
tree5185b268cb07ee417b712764d300f744c5f51c7e /lua
parentremove deprecated adapters and extras modules (diff)
downloadmason-519338579f0e56c893afdaa5ac117678e2d8edc7.tar
mason-519338579f0e56c893afdaa5ac117678e2d8edc7.tar.gz
mason-519338579f0e56c893afdaa5ac117678e2d8edc7.tar.bz2
mason-519338579f0e56c893afdaa5ac117678e2d8edc7.tar.lz
mason-519338579f0e56c893afdaa5ac117678e2d8edc7.tar.xz
mason-519338579f0e56c893afdaa5ac117678e2d8edc7.tar.zst
mason-519338579f0e56c893afdaa5ac117678e2d8edc7.zip
installers/shell: remove deprecated remote_powershell
Diffstat (limited to 'lua')
-rw-r--r--lua/nvim-lsp-installer/installers/shell.lua7
1 files changed, 0 insertions, 7 deletions
diff --git a/lua/nvim-lsp-installer/installers/shell.lua b/lua/nvim-lsp-installer/installers/shell.lua
index 53feda70..33d603a9 100644
--- a/lua/nvim-lsp-installer/installers/shell.lua
+++ b/lua/nvim-lsp-installer/installers/shell.lua
@@ -89,13 +89,6 @@ function M.powershell(raw_script, opts)
}
end
----@deprecated Unsafe.
----@param url string @The url to the powershell script to execute.
----@param opts {prefix: string, env: table}
-function M.remote_powershell(url, opts)
- return M.powershell(("iwr -UseBasicParsing %q | iex"):format(url), opts)
-end
-
---@param raw_script string @A script that is compatible with bash and cmd.exe.
---@param opts {env: table}
function M.polyshell(raw_script, opts)