aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2019-06-13 11:24:28 +1200
committerTom Ryder <tom@sanctum.geek.nz>2019-06-13 11:24:28 +1200
commitf338a8093998a70de5d642d584baf48f50474dc0 (patch)
tree584e22ce911dc0584f78d91d5968c85db43cca82 /Makefile
parentCreate Vim cache dir for new 'spellfile' location (diff)
downloaddotfiles-f338a8093998a70de5d642d584baf48f50474dc0.tar.gz
dotfiles-f338a8093998a70de5d642d584baf48f50474dc0.zip
Explicitly create Vim $MYVIM/cache dir
This directory would be created incidentally if it doesn't already exist, due to the presence of the `-p` flag for the `mkdir` call, but it's a little clearer what we're doing if we explicitly create it as the first argument.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile1
1 files changed, 1 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index e2bd73aa..fae2722a 100644
--- a/Makefile
+++ b/Makefile
@@ -592,6 +592,7 @@ install-vim-bundle: install-vim-config
install-vim-cache:
mkdir -p -- \
+ $(VIMDIR)/cache \
$(VIMDIR)/cache/backup \
$(VIMDIR)/cache/spell \
$(VIMDIR)/cache/swap \