aboutsummaryrefslogtreecommitdiff
path: root/installer/install-ra_lsp_server.sh
blob: 17ea3971d93fb22b6e2b650464938a739d7ffe90 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/usr/bin/env bash

set -e

os=$(uname -s | tr "[:upper:]" "[:lower:]")

case $os in
    linux)
        platform="linux"
        ;;
    darwin)
        platform="mac"
        ;;
esac

curl -L -o ra_lsp_server-$platform "https://github.com/rust-analyzer/rust-analyzer/releases/download/2020-01-27/ra_lsp_server-$platform"

mv ra_lsp_server-$platform ra_lsp_server