blob: 966a3b7e77352578601c37b6a42a3e3c2444c99b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
@echo off
cd %~dp0
if exist "..\servers\lsp4xml" rd /S /Q "..\servers\lsp4xml"
md "..\servers\lsp4xml"
cd "..\servers\lsp4xml"
curl -LO "https://dl.bintray.com/lsp4xml/releases/org/lsp4xml/org.eclipse.lsp4xml/0.9.1/org.eclipse.lsp4xml-0.9.1-uber.jar"
echo @echo off ^
java -jar %%~dp0\org.eclipse.lsp4xml-0.9.1-uber.jar ^
> lsp4xml.cmd
|