hush update noises

This commit is contained in:
accel 2021-12-20 17:29:01 +03:00
parent 6c4fc6872f
commit 8fa0c6b8fc

View File

@ -21,13 +21,13 @@ function zshlibs_update()
if [[ -n "$zshlibs_install" ]] if [[ -n "$zshlibs_install" ]]
then then
zbootstrap_message zlibs_update "cd into '$zshlibs_install' …" zbootstrap_message zlibs_update "cd into '$zshlibs_install' …"
pushd $zshlibs_install > /dev/null pushd $zshlibs_install 2>&1 > /dev/null
zbootstrap_message zlibs_update "git pull …" zbootstrap_message zlibs_update "git pull …"
( (
git pull & git pull 2>&1 > "${HOME}/.log/z_zshlibs_update" &
) 2>&1 > "${HOME}/.log/z_zshlibs_update" )
zbootstrap_message zlibs_update "update done" zbootstrap_message zlibs_update "update done"
popd > /dev/null popd 2>&1 > /dev/null
else else
echo "\$zshlibs_install not set!" echo "\$zshlibs_install not set!"
return 1 return 1