mirror of
https://github.com/mattn/vim-lsp-settings.git
synced 2025-12-17 12:00:29 +01:00
10 lines
283 B
Bash
Executable File
10 lines
283 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
curl -Lo ./coursier https://git.io/coursier-cli
|
|
chmod +x ./coursier
|
|
|
|
version="0.8.4"
|
|
java -jar ./coursier bootstrap --ttl Inf "org.scalameta:metals_2.12:$version" -r "bintray:scalacenter/releases" -r "sonatype:public" -r "sonatype:snapshots" -o ./metals
|