Download texlab binary for Debian
This commit is contained in:
parent
db230368ac
commit
374f7f554d
1 changed files with 13 additions and 1 deletions
|
@ -95,7 +95,19 @@
|
||||||
- diagnostic-languageserver
|
- diagnostic-languageserver
|
||||||
# TODO:
|
# TODO:
|
||||||
# - lua-language-server
|
# - 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
|
- name: Grab marksman (LSP server) binary
|
||||||
block:
|
block:
|
||||||
|
|
Loading…
Add table
Reference in a new issue