blob: 96ea914fef2056d09ce112c8cf3f7118fe25a94e (
plain)
1
2
3
4
5
6
7
8
|
@echo off
curl -L -o rls-windows.zip "https://github.com/jaredly/reason-language-server/releases/download/1.7.4/rls-windows.zip"
call "%~dp0\run_unzip" rls-windows.zip
del rls-windows.zip
move rls-windows\reason-language-server.exe reason-language-server.exe
rmdir rls-windows
|