aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index dd1a31f0..13a7db7a 100644
--- a/Makefile
+++ b/Makefile
@@ -530,10 +530,10 @@ install-vim-autoload:
cp -p -- vim/autoload/*.vim $(HOME)/.vim/autoload
install-vim-bundle: install-vim-config
- find vim/bundle -name .git -prune -o \
+ find vim/bundle/*/* \
-type d -exec sh -c \
- 'mkdir -p -- $(HOME)/.vim/"$${1#vim/bundle/*/}"' _ {} \; \
- -o \
+ 'mkdir -p -- $(HOME)/.vim/"$${1#vim/bundle/*/}"' _ {} \;
+ find vim/bundle/*/*/* \
-type f -exec sh -c \
'cp -p -- "$$1" $(HOME)/.vim/"$${1#vim/bundle/*/}"' _ {} \;