Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions installer/run_gzip.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

where gzip 2>NUL
if %ERRORLEVEL% equ 0 (
gzip -d %*
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 %*
curl -L -o "%~dp0\busybox.exe" https://github.com/mattn/vim-lsp-settings/releases/download/v0.0.1/busybox.exe
"%~dp0\busybox" gzip -d "%*"
)
6 changes: 3 additions & 3 deletions installer/run_unzip.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ if "x%1" equ "x" goto :EOF

where unzip 2>NUL
if %ERRORLEVEL% equ 0 (
unzip %*
unzip "%*"
) else (
curl -L -o %~dp0\unzip.exe https://github.com/mattn/vim-lsp-settings/releases/download/v0.0.1/unzip.exe
%~dp0\unzip %*
curl -L -o "%~dp0\unzip.exe" https://github.com/mattn/vim-lsp-settings/releases/download/v0.0.1/unzip.exe
"%~dp0\unzip" "%*"
)