Merge upstream/master

This commit is contained in:
Daniel Carrillo 2023-01-21 19:48:05 +01:00
commit fab4caffc7
2 changed files with 5 additions and 2 deletions

@ -1 +1 @@
Subproject commit 8a676a9157d2b0e00e88d06456ac7317f11c0317
Subproject commit a066b55f855c8e488d3ea9e26e861bdd5ecd4fe8

View File

@ -10,7 +10,10 @@
# Compile the completion dump to increase startup speed.
zcompdump="${XDG_CACHE_HOME:-$HOME/.cache}/prezto/zcompdump"
if [[ -s "$zcompdump" && (! -s "${zcompdump}.zwc" || "$zcompdump" -nt "${zcompdump}.zwc") ]]; then
zcompile "$zcompdump"
if command mkdir "${zcompdump}.zwc.lock" 2>/dev/null; then
zcompile "$zcompdump"
command rmdir "${zcompdump}.zwc.lock" 2>/dev/null
fi
fi
} &!