diff options
author | Yasuhiro Matsumoto <mattn.jp@gmail.com> | 2019-12-26 13:56:20 +0900 |
---|---|---|
committer | Yasuhiro Matsumoto <mattn.jp@gmail.com> | 2019-12-26 13:56:20 +0900 |
commit | 70d4458905da0a22ad439884da73606a5ccc6bd2 (patch) | |
tree | 445a87c4f8fcca96cc24513b3eff19e1ac2aabb8 /installer/install-solargraph.cmd | |
parent | 965dad764ca5b08831638051d7ce050b49386ea1 (diff) | |
download | vim-lsp-settings-70d4458905da0a22ad439884da73606a5ccc6bd2.tar.gz vim-lsp-settings-70d4458905da0a22ad439884da73606a5ccc6bd2.tar.bz2 vim-lsp-settings-70d4458905da0a22ad439884da73606a5ccc6bd2.zip |
Check unzip command existsv0.0.1
Diffstat (limited to 'installer/install-solargraph.cmd')
-rw-r--r-- | installer/install-solargraph.cmd | 42 |
1 files changed, 21 insertions, 21 deletions
diff --git a/installer/install-solargraph.cmd b/installer/install-solargraph.cmd index 9493e45..fe7f6d8 100644 --- a/installer/install-solargraph.cmd +++ b/installer/install-solargraph.cmd @@ -1,21 +1,21 @@ -@echo off - -setlocal - -cd /d %~dp0 - -set server_dir=..\servers\solargraph -if exist %server_dir% rd /Q /S "%server_dir%" -md "%server_dir%" -cd /d "%server_dir%" - -git clone "https://github.com/castwide/solargraph" . - -call bundle install --path vendor/bundle - -echo @echo off ^ - -bundle exec ruby %%~dp0\bin/solargraph stdio ^ - -> solargraph.cmd - +@echo off
+
+setlocal
+
+cd /d %~dp0
+
+set server_dir=..\servers\solargraph
+if exist %server_dir% rd /Q /S "%server_dir%"
+md "%server_dir%"
+cd /d "%server_dir%"
+
+git clone "https://github.com/castwide/solargraph" .
+
+call bundle install --path vendor/bundle
+
+echo @echo off ^
+
+bundle exec ruby %%~dp0\bin/solargraph stdio ^
+
+> solargraph.cmd
+
|