mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-02-03 07:40:05 +08:00
a830a3e2a4
* Update travis setting * Update after failure script * Fix lint * Update comment * Test bot * Update ci script * Update ci * Test lint * Update ci * Check var * Use log file * Fix lint * Check -f * Lint * Fix json * Use vim script instead * Fixup * quit afte comment * Update lint * Fix lint * Install gvim * Remove file * Install vim before test * Fix lint * Fix github api * Use neovim report error * Update travis * Fix unkonwn command * Use origin/dev * Update lint * Fix unkown command * Fix lint * Update config * Fix lint * Fix cache * Fix cache * Fix neovim install * Fix neovim install * Fix install * Use dockerfile * Fix lint * Update install script * Fix lint * Fix type * Fix alow faile * Fix jobs * Fix docker * Fix docker * Fix makefile * Update commenter vim script
21 lines
637 B
Bash
Executable File
21 lines
637 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# Fail on unset variables and command errors
|
|
set -ue -o pipefail
|
|
|
|
# Prevent commands misbehaving due to locale differences
|
|
export LC_ALL=C
|
|
|
|
docker pull spacevim/vims
|
|
|
|
git fetch origin dev:dev
|
|
|
|
if [ "${LINT#vimlint}" != "$LINT" ]; then
|
|
git clone --depth=1 https://github.com/syngan/vim-vimlint /tmp/vimlint
|
|
git clone --depth=1 https://github.com/ynkdir/vim-vimlparser /tmp/vimlparser
|
|
elif [ "${LINT#vint}" != "$LINT" ]; then
|
|
pip install vim-vint
|
|
elif [ "${LINT#vader}" != "$LINT" ]; then
|
|
git clone --depth=1 https://github.com/Shougo/dein.vim.git ~/.cache/vimfiles/repos/github.com/Shougo/dein.vim
|
|
fi
|