Browse Source

fix(installer): silence `git init`

Marc Cornellà 2 years ago
parent
commit
914b6399e8
1 changed files with 1 additions and 1 deletions
  1. 1 1
      tools/install.sh

+ 1 - 1
tools/install.sh

@@ -272,7 +272,7 @@ setup_ohmyzsh() {
   fi
 
   # Manual clone with git config options to support git < v1.7.2
-  git init "$ZSH" && cd "$ZSH" \
+  git init --quiet "$ZSH" && cd "$ZSH" \
   && git config core.eol lf \
   && git config core.autocrlf false \
   && git config fsck.zeroPaddedFilemode ignore \