mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-12 08:50:08 +00:00
zsh_reload: respect $ZDOTDIR
when searching for .zshrc
(#7706)
This commit is contained in:
parent
befdb4649b
commit
1689e9bb90
1 changed files with 1 additions and 1 deletions
|
@ -3,7 +3,7 @@ src() {
|
||||||
autoload -U compinit zrecompile
|
autoload -U compinit zrecompile
|
||||||
compinit -i -d "$cache/zcomp-$HOST"
|
compinit -i -d "$cache/zcomp-$HOST"
|
||||||
|
|
||||||
for f in ~/.zshrc "$cache/zcomp-$HOST"; do
|
for f in ${ZDOTDIR:-~}/.zshrc "$cache/zcomp-$HOST"; do
|
||||||
zrecompile -p $f && command rm -f $f.zwc.old
|
zrecompile -p $f && command rm -f $f.zwc.old
|
||||||
done
|
done
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue