aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index b9c07e79..62ac67c7 100644
--- a/Makefile
+++ b/Makefile
@@ -101,10 +101,10 @@ install-vim :
install -m 0644 vim/after/plugin/* $(HOME)/.vim/after/plugin
git submodule update --init
find vim/bundle -type d \( -name .git -prune -o -type d -print \) | while IFS= read -r dir ; do \
- install -d -- "$${dir}" $(HOME)/.vim/"$${dir#vim/}" ; \
+ install -m 0755 -d -- "$${dir}" $(HOME)/.vim/"$${dir#vim/}" ; \
done
find vim/bundle -type f ! -name '.git*' | while IFS= read -r file ; do \
- install -- "$${file}" $(HOME)/.vim/"$${file#vim/}" ; \
+ install -m 0644 -- "$${file}" $(HOME)/.vim/"$${file#vim/}" ; \
done
rm -f $(HOME)/.vim/autoload/pathogen.vim
ln -s ../bundle/pathogen/autoload/pathogen.vim \