Use latest version in kotlin LSP

This commit is contained in:
Vadim Lazebny
2024-05-25 16:44:28 +03:00
committed by mattn
parent 9747290f17
commit 38e75b1349
2 changed files with 2 additions and 4 deletions

View File

@@ -1,8 +1,7 @@
@echo off
setlocal
set VERSION=1.3.7
curl -L -o server.zip "https://github.com/fwcd/kotlin-language-server/releases/download/%VERSION%/server.zip"
curl -L -o server.zip "https://github.com/fwcd/kotlin-language-server/releases/latest/download/server.zip"
call "%~dp0\run_unzip.cmd" server.zip
del server.zip

View File

@@ -2,8 +2,7 @@
set -e
version="1.3.7"
curl -L -o server.zip "https://github.com/fwcd/kotlin-language-server/releases/download/$version/server.zip"
curl -L -o server.zip "https://github.com/fwcd/kotlin-language-server/releases/latest/download/server.zip"
unzip server.zip
rm server.zip