aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorXu Cheng2016-01-28 19:32:41 +0800
committerXu Cheng2016-01-28 19:32:41 +0800
commit47d1c2c4e6a3136eec2733d1e305aab968953c1a (patch)
treef01bad4cc518ed406b418f1ad37d8119f457f0a1
parent0ec5fec801e1a365f64e73ce3e613300c25ea7bc (diff)
downloadbrew-47d1c2c4e6a3136eec2733d1e305aab968953c1a.tar.bz2
update-bash: don't be quiet for git init
The output will help to show git is initialized in the first time. Hence, offer a better UX.
-rw-r--r--Library/Homebrew/cmd/update-bash.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/cmd/update-bash.sh b/Library/Homebrew/cmd/update-bash.sh
index 3b67d7f42..bcc721bbc 100644
--- a/Library/Homebrew/cmd/update-bash.sh
+++ b/Library/Homebrew/cmd/update-bash.sh
@@ -47,7 +47,7 @@ git_init_if_necessary() {
if [[ ! -d ".git" ]]
then
- git init -q
+ git init
git config --bool core.autocrlf false
git config remote.origin.url https://github.com/Homebrew/homebrew.git
git config remote.origin.fetch "+refs/heads/*:refs/remotes/origin/*"