diff options
author | Tsuyoshi CHO <Tsuyoshi.CHO@Gmail.com> | 2019-12-29 11:53:55 +0900 |
---|---|---|
committer | Tsuyoshi CHO <Tsuyoshi.CHO@Gmail.com> | 2019-12-29 11:53:55 +0900 |
commit | 777f83735a55396861f841a2fbdd66a35cc68129 (patch) | |
tree | 14cdcd33b2e0458c3121a718f1252c65abe50143 | |
parent | 03a6c769e2413c4cac3aa6bb5d707da934e1bc04 (diff) | |
download | vim-lsp-settings-777f83735a55396861f841a2fbdd66a35cc68129.tar.gz vim-lsp-settings-777f83735a55396861f841a2fbdd66a35cc68129.tar.bz2 vim-lsp-settings-777f83735a55396861f841a2fbdd66a35cc68129.zip |
fix batch path problem
-rw-r--r-- | installer/pip_install.cmd | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/installer/pip_install.cmd b/installer/pip_install.cmd index 017a478..dec3f15 100644 --- a/installer/pip_install.cmd +++ b/installer/pip_install.cmd @@ -39,9 +39,9 @@ goto :install :install -REM 1. pip command path check -where venv\bin\pip3 && set PIPPATH=venv\bin && goto :generate -where venv\Scripts\pip3 && set PIPPATH=venv\Scripts && goto :generate +REM 1. pip command path check (env var set just path&&... need) +where venv\bin\:pip3 && set PIPPATH=venv\bin&& goto :generate +where venv\Scripts\:pip3 && set PIPPATH=venv\Scripts&& goto :generate goto :EOF REM 2. pyls exec cmd generate |