diff options
author | Yasuhiro Matsumoto <mattn.jp@gmail.com> | 2019-12-26 15:41:26 +0900 |
---|---|---|
committer | Yasuhiro Matsumoto <mattn.jp@gmail.com> | 2019-12-26 15:41:26 +0900 |
commit | 92a372319e18a07c0744800bbd93d3fa70bb19c3 (patch) | |
tree | 0c111fa4c5ea11ecd5a7a029a1064f13b0211024 | |
parent | 909dd52c959e14f16cd501a767724c35dad4fc37 (diff) | |
download | vim-lsp-settings-92a372319e18a07c0744800bbd93d3fa70bb19c3.tar.gz vim-lsp-settings-92a372319e18a07c0744800bbd93d3fa70bb19c3.tar.bz2 vim-lsp-settings-92a372319e18a07c0744800bbd93d3fa70bb19c3.zip |
Add run_unzip.cmd
-rw-r--r-- | installer/run_unzip.cmd | 9 |
1 files changed, 9 insertions, 0 deletions
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" |