[provisioning] Silence output of git config

This commit is contained in:
Correl Roush 2020-06-24 21:30:17 -04:00
parent f15024724e
commit bbacd5a441

View file

@ -27,5 +27,5 @@ function _git {
fi fi
} }
git config --global user.email || _run "[git] Setting user.email to '$GIT_EMAIL'" git config --global user.email $GIT_EMAIL git config --global user.email >/dev/null || _run "[git] Setting user.email to '$GIT_EMAIL'" git config --global user.email $GIT_EMAIL
git config --global user.name || _run "[git] Setting user.name to '$GIT_NAME'" git config --global user.name $GIT_NAME git config --global user.name >/dev/null || _run "[git] Setting user.name to '$GIT_NAME'" git config --global user.name $GIT_NAME