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

redirect output

This commit is contained in:
slavaGanzin 2016-09-29 22:14:04 +03:00
parent a1200f5bcc
commit 1427fbffef

View file

@ -1,5 +1,5 @@
function git_fetch_on_chpwd {
([[ -d .git ]] && git fetch --all >! ./.git/FETCH_LOG &)
([[ -d .git ]] && git fetch --all &>! ./.git/FETCH_LOG &)
}
chpwd_functions=(${chpwd_functions[@]} "git_fetch_on_chpwd")
unset git_fetch_on_cpwd
chpwd_functions+=(git_fetch_on_chpwd)
git_fetch_on_chpwd