summaryrefslogtreecommitdiff
path: root/tools/install.sh
diff options
context:
space:
mode:
authorMarc Cornellà <hello@mcornella.com>2022-02-21 20:18:58 +0100
committerMarc Cornellà <hello@mcornella.com>2022-02-22 21:24:43 +0100
commit914b6399e88a16fdced427c2ae7738785dcb16b0 (patch)
tree6f0ce9eae85e42eb012cb801d5074b2146c2ed6e /tools/install.sh
parent9b883aa4171585995475d9ddff2ef59401199b36 (diff)
downloadzsh-914b6399e88a16fdced427c2ae7738785dcb16b0.tar.gz
zsh-914b6399e88a16fdced427c2ae7738785dcb16b0.tar.bz2
zsh-914b6399e88a16fdced427c2ae7738785dcb16b0.zip
fix(installer): silence `git init`
Diffstat (limited to 'tools/install.sh')
-rwxr-xr-xtools/install.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/install.sh b/tools/install.sh
index c80c09365..7953ad112 100755
--- a/tools/install.sh
+++ b/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 \