mirror of
https://github.com/mattn/vim-lsp-settings.git
synced 2025-12-12 20:35:54 +01:00
11 lines
343 B
Batchfile
11 lines
343 B
Batchfile
@echo off
|
|
|
|
setlocal
|
|
|
|
set version=v0.1.12
|
|
curl -L -o svls-%version%-x86_64-win.zip "https://github.com/dalance/svls/releases/download/v0.1.12/svls-%version%-x86_64-win.zip"
|
|
call "%~dp0\run_unzip.cmd" svls-%version%-x86_64-win.zip
|
|
move target\x86_64-pc-windows-msvc\release\svls.exe .
|
|
rd /Q /S target
|
|
del svls-%version%-x86_64-win.zip
|