From c0ed84eae9abf4c4c1b73d476bd21ee8d2228994 Mon Sep 17 00:00:00 2001 From: accel Date: Mon, 20 Dec 2021 17:24:45 +0300 Subject: [PATCH] hush update noises --- global.funcs.zsh | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/global.funcs.zsh b/global.funcs.zsh index caea8a3..030966a 100644 --- a/global.funcs.zsh +++ b/global.funcs.zsh @@ -21,11 +21,13 @@ function zshlibs_update() if [[ -n "$zshlibs_install" ]] then zbootstrap_message zlibs_update "cd into '$zshlibs_install' …" - pushd $zshlibs_install + pushd $zshlibs_install > /dev/null zbootstrap_message zlibs_update "git pull …" + ( git pull & + ) 2>&1 > "${HOME}/.log/z_zshlibs_update" zbootstrap_message zlibs_update "update done" - popd + popd > /dev/null else echo "\$zshlibs_install not set!" return 1