Browse Source

redirect output

slavaGanzin 8 years ago
parent
commit
1427fbffef
1 changed files with 3 additions and 3 deletions
  1. 3 3
      plugins/git-auto-fetch/git-auto-fetch.plugin.zsh

+ 3 - 3
plugins/git-auto-fetch/git-auto-fetch.plugin.zsh

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