From d6f8b4ec223b33e749a38edf4d76eecb660dca82 Mon Sep 17 00:00:00 2001 From: ribmo Date: Mon, 12 May 2014 22:24:59 +0100 Subject: [PATCH] bootstrap.sh: Make `rsync` output numbers in a human-readable format Closes #383. --- bootstrap.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bootstrap.sh b/bootstrap.sh index 0e6e5db..b4b8f96 100755 --- a/bootstrap.sh +++ b/bootstrap.sh @@ -3,7 +3,7 @@ cd "$(dirname "${BASH_SOURCE}")" git pull origin master function doIt() { rsync --exclude ".git/" --exclude ".DS_Store" --exclude "bootstrap.sh" \ - --exclude "README.md" --exclude "LICENSE-MIT.txt" -av --no-perms . ~ + --exclude "README.md" --exclude "LICENSE-MIT.txt" -avh --no-perms . ~ source ~/.bash_profile } if [ "$1" == "--force" -o "$1" == "-f" ]; then