mirror of
https://github.com/mattn/vim-lsp-settings.git
synced 2025-12-12 20:35:54 +01:00
10 lines
228 B
Batchfile
10 lines
228 B
Batchfile
@echo off
|
|
|
|
where gzip 2>NUL
|
|
if %ERRORLEVEL% equ 0 (
|
|
gzip -d %*
|
|
) else (
|
|
curl -L -o %~dp0\busybox.exe https://github.com/mattn/vim-lsp-settings/releases/download/v0.0.1/busybox.exe
|
|
%~dp0\busybox gzip -d %*
|
|
)
|