From cbcc4b15834df90fdd8cf936720a74a396f4f2e8 Mon Sep 17 00:00:00 2001 From: Mathias Bynens Date: Wed, 1 May 2013 16:08:22 +0200 Subject: =?UTF-8?q?bootstrap.sh:=20Don=E2=80=99t=20make=20the=20home=20dir?= =?UTF-8?q?ectory=20world-readable?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixes #159. --- bootstrap.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- cgit v1.2.3