aboutsummaryrefslogtreecommitdiffstats
path: root/lua/nvim-lsp-installer/installers/context.lua
diff options
context:
space:
mode:
authortreatybreaker <58627896+treatybreaker@users.noreply.github.com>2022-03-06 20:53:09 +0000
committerGitHub <noreply@github.com>2022-03-06 21:53:09 +0100
commit88aa5277fbfb87e359838660e381b8e65a69e9fa (patch)
tree15f6171911a8ed284cad5e9edc9702f8c5ff36ec /lua/nvim-lsp-installer/installers/context.lua
parentrun server installation in async execution context (#525) (diff)
downloadmason-88aa5277fbfb87e359838660e381b8e65a69e9fa.tar
mason-88aa5277fbfb87e359838660e381b8e65a69e9fa.tar.gz
mason-88aa5277fbfb87e359838660e381b8e65a69e9fa.tar.bz2
mason-88aa5277fbfb87e359838660e381b8e65a69e9fa.tar.lz
mason-88aa5277fbfb87e359838660e381b8e65a69e9fa.tar.xz
mason-88aa5277fbfb87e359838660e381b8e65a69e9fa.tar.zst
mason-88aa5277fbfb87e359838660e381b8e65a69e9fa.zip
Support libc detection (#527)
Diffstat (limited to 'lua/nvim-lsp-installer/installers/context.lua')
-rw-r--r--lua/nvim-lsp-installer/installers/context.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/lua/nvim-lsp-installer/installers/context.lua b/lua/nvim-lsp-installer/installers/context.lua
index 7f3761d6..3dda0ab2 100644
--- a/lua/nvim-lsp-installer/installers/context.lua
+++ b/lua/nvim-lsp-installer/installers/context.lua
@@ -84,8 +84,8 @@ function M.use_github_release_file(repo, file, opts)
)
context.stdio_sink.stderr(
(
- "Could not find which release file to download. Most likely, the current operating system or architecture (%s) is not supported.\n"
- ):format(platform.arch)
+ "Could not find which release file to download. Most likely the current operating system, architecture (%s), or libc (%s) is not supported.\n"
+ ):format(platform.arch, platform.get_libc())
)
return nil
end