mirror of
https://github.com/mattn/vim-lsp-settings.git
synced 2025-12-12 20:35:54 +01:00
15 lines
331 B
Bash
Executable File
15 lines
331 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
curl -L -o EmmyLua-LS-all.jar 'https://ci.appveyor.com/api/buildjobs/54yf9rjvj49494pd/artifacts/EmmyLua-LS%2Fbuild%2Flibs%2FEmmyLua-LS-all.jar'
|
|
|
|
cat <<EOF >emmylua-ls
|
|
#!/usr/bin/env bash
|
|
|
|
DIR=\$(cd \$(dirname \$0); pwd)
|
|
java -cp \$DIR/EmmyLua-LS-all.jar com.tang.vscode.MainKt
|
|
EOF
|
|
|
|
chmod +x emmylua-ls
|