mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-12 21:39:48 +01:00
fix(git-auto-fetch): cancel fetch if we don't have permission over git folder (#10010)
This commit is contained in:
parent
5a4159cd29
commit
ab8b9913cb
1 changed files with 3 additions and 2 deletions
|
@ -11,8 +11,9 @@ function git-fetch-all {
|
||||||
return 0
|
return 0
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Do nothing if auto-fetch disabled
|
# Do nothing if auto-fetch is disabled or don't have permissions
|
||||||
if [[ -z "$gitdir" || -f "$gitdir/NO_AUTO_FETCH" ]]; then
|
if [[ ! -w "$gitdir" || -f "$gitdir/NO_AUTO_FETCH" ]] ||
|
||||||
|
[[ -f "$gitdir/FETCH_LOG" && ! -w "$gitdir/FETCH_LOG" ]]; then
|
||||||
return 0
|
return 0
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue