diff options
author | Mitsuo Heijo <mitsuo.heijo@gmail.com> | 2020-01-31 00:06:49 +0900 |
---|---|---|
committer | Mitsuo Heijo <mitsuo.heijo@gmail.com> | 2020-01-31 00:06:49 +0900 |
commit | a529f0d6aebec229516ce849863bb8c3a3f998d1 (patch) | |
tree | 65fc7a7e06f9447ff692c679082ebc77e3f1e098 /installer/install-kotlin-language-server.sh | |
parent | 4da303693f43c6b97bbb43db9ca81a7f4c4c150b (diff) | |
download | vim-lsp-settings-a529f0d6aebec229516ce849863bb8c3a3f998d1.tar.gz vim-lsp-settings-a529f0d6aebec229516ce849863bb8c3a3f998d1.tar.bz2 vim-lsp-settings-a529f0d6aebec229516ce849863bb8c3a3f998d1.zip |
fix shellcheck issues, format bash scripts with shfmt
Diffstat (limited to 'installer/install-kotlin-language-server.sh')
-rwxr-xr-x | installer/install-kotlin-language-server.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/installer/install-kotlin-language-server.sh b/installer/install-kotlin-language-server.sh index 345676f..1d3b973 100755 --- a/installer/install-kotlin-language-server.sh +++ b/installer/install-kotlin-language-server.sh @@ -2,7 +2,8 @@ set -e -curl -L -o server.zip 'https://github.com/fwcd/kotlin-language-server/releases/download/0.5.2/server.zip' +version="0.5.2" +curl -L -o server.zip "https://github.com/fwcd/kotlin-language-server/releases/download/$version/server.zip" unzip server.zip rm server.zip |