mirror of
https://github.com/mattn/vim-lsp-settings.git
synced 2025-12-12 20:35:54 +01:00
18 lines
216 B
Bash
Executable File
18 lines
216 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
cat <<EOF >sorbet
|
|
#!/bin/sh
|
|
|
|
TARGET_DIR=\$1
|
|
shift
|
|
cd \${TARGET_DIR}
|
|
bundle exec srb typecheck \$*
|
|
EOF
|
|
|
|
chmod +x sorbet
|
|
|
|
echo 'Install Done.'
|
|
echo '**You need add sorbet dependencies in Gemfile.**'
|