From c77ad3d7a7eb81adcc3fb04eaa4a71095b6fd8a8 Mon Sep 17 00:00:00 2001 From: William Boman Date: Wed, 12 Jan 2022 16:42:12 +0100 Subject: fix(opencl_ls): update release asset filenames --- lua/nvim-lsp-installer/servers/opencl_ls/init.lua | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) (limited to 'lua') diff --git a/lua/nvim-lsp-installer/servers/opencl_ls/init.lua b/lua/nvim-lsp-installer/servers/opencl_ls/init.lua index 27ce3413..8a0af34f 100644 --- a/lua/nvim-lsp-installer/servers/opencl_ls/init.lua +++ b/lua/nvim-lsp-installer/servers/opencl_ls/init.lua @@ -8,15 +8,9 @@ local Data = require "nvim-lsp-installer.data" local coalesce, when = Data.coalesce, Data.when return function(name, root_dir) local target = coalesce( - when( - platform.is_mac, - coalesce( - when(platform.arch == "x64", "opencl-language-server-darwin.zip"), - when(platform.arch == "arm64", "opencl-language-server-darwin.zip") - ) - ), - when(platform.is_linux, coalesce(when(platform.arch == "x64", "opencl-language-server-linux.zip"))), - when(platform.is_win, coalesce(when(platform.arch == "x64", "opencl-language-server-win32.zip"))) + when(platform.is_mac, "opencl-language-server-darwin-x86_64.zip"), + when(platform.is_linux, coalesce(when(platform.arch == "x64", "opencl-language-server-linux-x86_64.zip"))), + when(platform.is_win, coalesce(when(platform.arch == "x64", "opencl-language-server-win32-x86_64.zip"))) ) return server.Server:new { name = name, -- cgit v1.2.3-70-g09d2