mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-12 08:50:08 +00:00
fix(git-auto-fetch): don't override native stat
command (#11068)
This commit is contained in:
parent
af2daa7ab7
commit
8362ae285a
1 changed files with 2 additions and 1 deletions
|
@ -2,7 +2,8 @@
|
|||
: ${GIT_AUTO_FETCH_INTERVAL:=60}
|
||||
|
||||
# Necessary for the git-fetch-all function
|
||||
zmodload zsh/datetime zsh/stat
|
||||
zmodload zsh/datetime
|
||||
zmodload -F zsh/stat b:zstat # only zstat command, not stat command
|
||||
|
||||
function git-fetch-all {
|
||||
(
|
||||
|
|
Loading…
Reference in a new issue