From da9cf680958b6880f61acd01436b41716092f235 Mon Sep 17 00:00:00 2001 From: "martin f. krafft" Date: Sat, 10 May 2008 10:42:23 +0100 Subject: [PATCH] fix compile selection glob --- .zsh/zprofile/40_zcompile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.zsh/zprofile/40_zcompile b/.zsh/zprofile/40_zcompile index 91b133a..1d9718f 100644 --- a/.zsh/zprofile/40_zcompile +++ b/.zsh/zprofile/40_zcompile @@ -10,7 +10,8 @@ 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 -- 2.39.2