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 7ffe007a..bda83549 100644
--- a/lua/nvim-lsp-installer/installers/shell.lua
+++ b/lua/nvim-lsp-installer/installers/shell.lua
@@ -11,7 +11,7 @@ function M.raw(raw_script, opts)
vim.o.shell = "/bin/bash"
vim.cmd [[new]]
vim.fn.termopen(
- opts.prefix or default_opts.prefix .. raw_script,
+ (opts.prefix or default_opts.prefix) .. raw_script,
{
cwd = server._root_dir,
on_exit = function (_, exit_code)