fix(init): fix subscript flag in 11ca9e2a

This commit is contained in:
Marc Cornellà 2024-07-13 18:32:22 +02:00
parent 11ca9e2ac7
commit 0b27b15d0b
No known key found for this signature in database
GPG Key ID: 0314585E776A9C1B

View File

@ -65,7 +65,7 @@ fi
# Create cache and completions dir and add to $fpath # Create cache and completions dir and add to $fpath
mkdir -p "$ZSH_CACHE_DIR/completions" mkdir -p "$ZSH_CACHE_DIR/completions"
(( ${fpath[(ie)$ZSH_CACHE_DIR/completions]} )) || fpath=("$ZSH_CACHE_DIR/completions" $fpath) (( ${fpath[(Ie)$ZSH_CACHE_DIR/completions]} )) || fpath=("$ZSH_CACHE_DIR/completions" $fpath)
# Check for updates on initial load... # Check for updates on initial load...
source "$ZSH/tools/check_for_upgrade.sh" source "$ZSH/tools/check_for_upgrade.sh"