Download texlab binary for Debian

This commit is contained in:
flyingscorpio@clevo 2022-10-01 12:38:15 +02:00
parent db230368ac
commit 374f7f554d

View file

@ -95,7 +95,19 @@
- diagnostic-languageserver
# TODO:
# - lua-language-server
# - texlab
- name: Find latest texlab version
uri:
url: https://github.com/latex-lsp/texlab/releases/latest
register: latest_http_content
- name: Set latest texlab version
set_fact:
texlab_version: "{{ latest_http_content.url | split('/') | last }}"
- name: Get latest texlab binary
unarchive:
src: "https://github.com/latex-lsp/texlab/releases/download/{{ texlab_version }}/texlab-{{ ansible_facts.architecture }}-linux.tar.gz"
remote_src: true
dest: ~/.local/bin/texlab
mode: 0755
- name: Grab marksman (LSP server) binary
block: