aboutsummaryrefslogtreecommitdiffstats
path: root/bootstrap.sh
diff options
context:
space:
mode:
authorMathias Bynens <mathias@qiwi.be>2013-05-01 16:08:22 +0200
committerMathias Bynens <mathias@qiwi.be>2013-05-01 16:08:22 +0200
commitcbcc4b15834df90fdd8cf936720a74a396f4f2e8 (patch)
treecc0e99723681f689187b25422722934693349374 /bootstrap.sh
parentb53818ffd84cf53c858492eb879a49a92bf65d27 (diff)
downloaddotfiles-cbcc4b15834df90fdd8cf936720a74a396f4f2e8.tar.gz
dotfiles-cbcc4b15834df90fdd8cf936720a74a396f4f2e8.tar.bz2
dotfiles-cbcc4b15834df90fdd8cf936720a74a396f4f2e8.zip
bootstrap.sh: Don’t make the home directory world-readable
Fixes #159.
Diffstat (limited to 'bootstrap.sh')
-rwxr-xr-xbootstrap.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/bootstrap.sh b/bootstrap.sh
index 9fd1df3..70e3d2d 100755
--- a/bootstrap.sh
+++ b/bootstrap.sh
@@ -2,7 +2,7 @@
cd "$(dirname "${BASH_SOURCE}")"
git pull origin master
function doIt() {
- rsync --exclude ".git/" --exclude ".DS_Store" --exclude "bootstrap.sh" --exclude "README.md" -av . ~
+ rsync --exclude ".git/" --exclude ".DS_Store" --exclude "bootstrap.sh" --exclude "README.md" -av --no-perms . ~
}
if [ "$1" == "--force" -o "$1" == "-f" ]; then
doIt