diff options
| author | William Boman <william@redwill.se> | 2022-06-08 01:36:47 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-06-08 01:36:47 +0200 |
| commit | 2b2d2141394f95a28cf5dfed922ebecf123d72b1 (patch) | |
| tree | e4962a1f3e45b9dbd619431748aca916caa70dba /lua/nvim-lsp-installer/core/managers/github | |
| parent | feat: add marksman (#760) (diff) | |
| download | mason-2b2d2141394f95a28cf5dfed922ebecf123d72b1.tar mason-2b2d2141394f95a28cf5dfed922ebecf123d72b1.tar.gz mason-2b2d2141394f95a28cf5dfed922ebecf123d72b1.tar.bz2 mason-2b2d2141394f95a28cf5dfed922ebecf123d72b1.tar.lz mason-2b2d2141394f95a28cf5dfed922ebecf123d72b1.tar.xz mason-2b2d2141394f95a28cf5dfed922ebecf123d72b1.tar.zst mason-2b2d2141394f95a28cf5dfed922ebecf123d72b1.zip | |
chore: update some logging (#761)
* chore: update some logging
* docs: add section about known errors
Diffstat (limited to 'lua/nvim-lsp-installer/core/managers/github')
| -rw-r--r-- | lua/nvim-lsp-installer/core/managers/github/init.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lua/nvim-lsp-installer/core/managers/github/init.lua b/lua/nvim-lsp-installer/core/managers/github/init.lua index fe4a4c5a..f74fde76 100644 --- a/lua/nvim-lsp-installer/core/managers/github/init.lua +++ b/lua/nvim-lsp-installer/core/managers/github/init.lua @@ -43,7 +43,7 @@ function M.release_file(opts) local release = _.coalesce(opts.version, ctx.requested_version):or_else_get(function() return client.fetch_latest_release(opts.repo) :map(_.prop "tag_name") - :get_or_throw "Failed to fetch latest release from GitHub API." + :get_or_throw "Failed to fetch latest release from GitHub API. Refer to :h nvim-lsp-installer-errors-github-api for more information." end) ---@type string local asset_file |
