zk icon indicating copy to clipboard operation
zk copied to clipboard

missing Linux binaries in release assets break some 3rd party tools

Open dvdjaco opened this issue 3 years ago • 0 comments
trafficstars

Some automation tools like mason.nvim or nvim-lsp-installer expect to find linux binaries in the zk "latest release" URL when auto-installing the zk LSP server. These binaries are missing from the last couple of zk releases, which means that some NVim users can't use zk as an LSP server without disabling auto-install and building/installing it manually.

I know this is not a zk bug, but it would help making zk more accessible via zk-nvim, and having Linux binaries would be nice anyway ;-)

I was able to build zk for linux/amd64 using the Docker images from zk-xcompile. I followed the instructions in the README but I had to change the build command from ./go build to go mod tidy && go build:

docker run --rm -v "$PWD":/usr/src/zk -w /usr/src/zk mickaelmenu/zk-xcompile:linux-arm64 /bin/bash -c './go build'

dvdjaco avatar Sep 21 '22 16:09 dvdjaco