From 0ae459979785c28552e048f84cf83ee8cbedc53c Mon Sep 17 00:00:00 2001 From: Simon Ruderich Date: Mon, 11 Mar 2013 00:08:39 +0100 Subject: [PATCH] setup.sh: Run `make` in vim/spell/ if it exists. --- setup.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/setup.sh b/setup.sh index 10591b6..304d4d0 100755 --- a/setup.sh +++ b/setup.sh @@ -36,6 +36,11 @@ if installed gvim; then link gvimrc ~/.gvimrc fi +# Create/Update custom spell checking files. +if test -f vim/spell/Makefile; then + make -C vim/spell +fi + if test -d ~/.crontab.d; then link crontab ~/.crontab.d/crontab.dotfiles-vim fi -- 2.44.1