X-Git-Url: https://git.madduck.net/etc/zsh.git/blobdiff_plain/33004025db685f7638c2aca82c9cad379af0f940..81f7855b227b35481d29b85e118d0e3710c5915f:/.zsh/zprofile/40_zcompile diff --git a/.zsh/zprofile/40_zcompile b/.zsh/zprofile/40_zcompile index 23fd063..1d9718f 100644 --- a/.zsh/zprofile/40_zcompile +++ b/.zsh/zprofile/40_zcompile @@ -10,12 +10,13 @@ if [ -n "$ZDOTDIR" ] && [ -d "$ZDOTDIR" ]; then rm -f $ZDOTDIR/**/*.zwc(D.N) - for f ($ZDOTDIR/*[^$ZDOTDIR/.gitignore](D.,@) $ZDOTDIR/**/*(.)) zcompile $f + for f ($ZDOTDIR/*(D.,@) $ZDOTDIR/**/*(.)) \ + [[ $f:t != .gitignore ]] && zcompile $f fi if [ -n "$ZVARDIR" ] && [ -d "$ZVARDIR" ]; then rm -f $ZVARDIR/**/*.zwc(.N) - for f ($ZVARDIR/comp*(.)) zcompile $f + for f ($ZVARDIR/comp*(.N)) zcompile $f fi # vim:ft=zsh