From 92a372319e18a07c0744800bbd93d3fa70bb19c3 Mon Sep 17 00:00:00 2001 From: Yasuhiro Matsumoto Date: Thu, 26 Dec 2019 15:41:26 +0900 Subject: Add run_unzip.cmd --- installer/run_unzip.cmd | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 installer/run_unzip.cmd diff --git a/installer/run_unzip.cmd b/installer/run_unzip.cmd new file mode 100644 index 0000000..25e4c36 --- /dev/null +++ b/installer/run_unzip.cmd @@ -0,0 +1,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" -- cgit v1.2.3-54-g00ecf