mirror of
https://github.com/mattn/vim-lsp-settings.git
synced 2025-12-12 20:35:54 +01:00
19 lines
329 B
Bash
Executable File
19 lines
329 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
os=$(uname -s | tr "[:upper:]" "[:lower:]")
|
|
version="0.0.12"
|
|
|
|
case $os in
|
|
darwin | linux)
|
|
url="https://github.com/juliosueiras/terraform-lsp/releases/download/v${version}/terraform-lsp_${version}_${os}_amd64.tar.gz"
|
|
curl -L "$url" | tar zx
|
|
;;
|
|
*)
|
|
printf "%s doesn't supported" "$os"
|
|
exit 1
|
|
;;
|
|
|
|
esac
|