Update 2024-11-23 15:58 OpenBSD/amd64-t14

This commit is contained in:
c0dev0id
2024-11-23 15:58:56 +01:00
parent e42bedae7b
commit 381dec3be2
31 changed files with 5801 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
#!/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