0
0
Fork 0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2024-09-12 04:01:14 +02:00

fix(installer): silence git init

This commit is contained in:
Marc Cornellà 2022-02-21 20:18:58 +01:00
parent 9b883aa417
commit 914b6399e8

View file

@ -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 \