blob: 25e4c36d0d56b470fb0df6fa107242909150a978 (
plain)
1
2
3
4
5
6
7
8
9
|
@echo off
if "x%1" equ "x" goto :EOF
where unzip 2>NUL
if %ERRORLEVEL% neq 0 (
curl -LO https://github.com/mattn/vim-lsp-settings/releases/download/v0.0.1/unzip.exe
)
unzip "%1"
|