78b956b821
subrepo: subdir: "dotfiles/.vim/plugged/vim-markdown" merged: "c3f83ebb" upstream: origin: "https://github.com/plasticboy/vim-markdown.git" branch: "master" commit: "c3f83ebb" git-subrepo: version: "0.4.3" origin: "???" commit: "???"
16 lines
346 B
Bash
Executable file
16 lines
346 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
# Exit on error.
|
|
set -e
|
|
|
|
cd "$( dirname "${BASH_SOURCE[0]}" )"
|
|
|
|
for dep in ../build/tabular ../build/vim-toml ../build/vim-json ../build/vader.vim; do
|
|
if [[ ! -d $dep ]]; then
|
|
echo "Missing dependency: $dep"
|
|
echo "You may just want to use 'make test'."
|
|
exit 1
|
|
fi
|
|
done
|
|
|
|
vim -Nu vimrc -c 'Vader! *' > /dev/null
|