aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2014-10-03 10:04:23 +1300
committerTom Ryder <tom@sanctum.geek.nz>2014-10-03 10:04:23 +1300
commitfe6cdc85f0e5aae70be2c5adcd33ef20aabe4a05 (patch)
treef00b19de99f3c7028b52e3ff4b718d72fb037dfc /Makefile
parentUse find(1) loop as a recursive install emulator (diff)
downloaddotfiles-fe6cdc85f0e5aae70be2c5adcd33ef20aabe4a05.tar.gz
dotfiles-fe6cdc85f0e5aae70be2c5adcd33ef20aabe4a05.zip
Forgot permissions
Diffstat (limited to 'Makefile')
-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 \