zsh_reload: respect `$ZDOTDIR` when searching for `.zshrc` (#7706)

This commit is contained in:
Alexander Schlarb 2020-02-28 20:01:35 +00:00 committed by GitHub
parent befdb4649b
commit 1689e9bb90
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -3,7 +3,7 @@ src() {
autoload -U compinit zrecompile
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
done