diff options
| author | Chris Kipp <ckipp@pm.me> | 2020-01-26 22:32:32 +0100 |
|---|---|---|
| committer | Justin M. Keyes <justinkz@gmail.com> | 2020-01-26 13:32:32 -0800 |
| commit | 0e9da81f120cbd523b15c03948878e826dd1ee2f (patch) | |
| tree | adba9d777fc94a553b8473a9b6fc9ddbbb31a673 /lua | |
| parent | [docgen] Update README.md (diff) | |
| download | nvim-lspconfig-0e9da81f120cbd523b15c03948878e826dd1ee2f.tar nvim-lspconfig-0e9da81f120cbd523b15c03948878e826dd1ee2f.tar.gz nvim-lspconfig-0e9da81f120cbd523b15c03948878e826dd1ee2f.tar.bz2 nvim-lspconfig-0e9da81f120cbd523b15c03948878e826dd1ee2f.tar.lz nvim-lspconfig-0e9da81f120cbd523b15c03948878e826dd1ee2f.tar.xz nvim-lspconfig-0e9da81f120cbd523b15c03948878e826dd1ee2f.tar.zst nvim-lspconfig-0e9da81f120cbd523b15c03948878e826dd1ee2f.zip | |
Update coursier url (#104)
Diffstat (limited to 'lua')
| -rw-r--r-- | lua/nvim_lsp/metals.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lua/nvim_lsp/metals.lua b/lua/nvim_lsp/metals.lua index 01432ed1..0f4c5c4e 100644 --- a/lua/nvim_lsp/metals.lua +++ b/lua/nvim_lsp/metals.lua @@ -23,7 +23,7 @@ local function make_installer() return end local coursier_bin = install_dir .. "/coursier" - local download_cmd = string.format("curl -fLo %s --create-dirs https://git.io/coursier", coursier_bin) + local download_cmd = string.format("curl -fLo %s --create-dirs https://git.io/coursier-cli", coursier_bin) local chmod_cmd = string.format("chmod +x %s", coursier_bin) local install_cmd = string.format("%s bootstrap --java-opt -Xss4m --java-opt -Xms100m --java-opt -Dmetals.client=coc.nvim org.scalameta:metals_2.12:latest.release -r bintray:scalacenter/releases -r sonatype:snapshots -o %s -f", coursier_bin, metals_bin) vim.fn.system(download_cmd) |
